first commit

This commit is contained in:
mikgaw@st.amu.edu.pl 2024-02-18 17:31:49 +01:00
commit 759ed432c4
164 changed files with 7310 additions and 0 deletions

44
.gitignore vendored Normal file
View File

@ -0,0 +1,44 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release

30
.metadata Normal file
View File

@ -0,0 +1,30 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled.
version:
revision: 796c8ef79279f9c774545b3771238c3098dbefab
channel: stable
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
- platform: windows
create_revision: 796c8ef79279f9c774545b3771238c3098dbefab
base_revision: 796c8ef79279f9c774545b3771238c3098dbefab
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# fiszki_projekt
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

29
analysis_options.yaml Normal file
View File

@ -0,0 +1,29 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at
# https://dart-lang.github.io/linter/lints/index.html.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

13
android/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks

85
android/app/build.gradle Normal file
View File

@ -0,0 +1,85 @@
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
//
apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
namespace "com.example.fiszki_projekt"
compileSdkVersion flutter.compileSdkVersion
ndkVersion flutter.ndkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.fiszki_projekt"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//
implementation platform('com.google.firebase:firebase-bom:30.2.0')
//
implementation 'com.google.firebase:firebase-storage'
}
android {
defaultConfig{
minSdkVersion 21
}
}

View File

@ -0,0 +1,39 @@
{
"project_info": {
"project_number": "361698509038",
"project_id": "fiszki3",
"storage_bucket": "fiszki3.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:361698509038:android:5ca2636f98ed7538a073ff",
"android_client_info": {
"package_name": "com.example.fiszki_projekt"
}
},
"oauth_client": [
{
"client_id": "361698509038-vs6oujoeqt48ecpcu4e1ulnphue4ark2.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyD6NDPChi41Ki1_4OecQjIobHtcV4DC9tA"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "361698509038-vs6oujoeqt48ecpcu4e1ulnphue4ark2.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

View File

@ -0,0 +1,33 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="fiszki_projekt"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>

View File

@ -0,0 +1,6 @@
package com.example.fiszki_projekt
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@android:color/white" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 721 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine draws its first frame -->
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<!-- Theme applied to the Android Window as soon as the process has started.
This theme determines the color of the Android Window while your
Flutter UI initializes, as well as behind your Flutter UI while its
running.
This Theme is only used starting with V2 of Flutter's Android embedding. -->
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

33
android/build.gradle Normal file
View File

@ -0,0 +1,33 @@
buildscript {
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
//
classpath 'com.google.gms:google-services:4.3.13'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true

View File

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

11
android/settings.gradle Normal file
View File

@ -0,0 +1,11 @@
include ':app'
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
def properties = new Properties()
assert localPropertiesFile.exists()
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"

34
ios/.gitignore vendored Normal file
View File

@ -0,0 +1,34 @@
**/dgph
*.mode1v3
*.mode2v3
*.moved-aside
*.pbxuser
*.perspectivev3
**/*sync/
.sconsign.dblite
.tags*
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Flutter/app.zip
Flutter/flutter_assets/
Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*
# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
!default.pbxuser
!default.perspectivev3

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>App</string>
<key>CFBundleIdentifier</key>
<string>io.flutter.flutter.app</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>App</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>11.0</string>
</dict>
</plist>

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -0,0 +1 @@
#include "Generated.xcconfig"

View File

@ -0,0 +1,613 @@
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 54;
objects = {
/* Begin PBXBuildFile section */
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
proxyType = 1;
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
remoteInfo = Runner;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
);
name = "Embed Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
97C146EB1CF9000F007C117D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
9740EEB11CF90186004384FC /* Flutter */ = {
isa = PBXGroup;
children = (
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
9740EEB21CF90195004384FC /* Debug.xcconfig */,
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
9740EEB31CF90195004384FC /* Generated.xcconfig */,
);
name = Flutter;
sourceTree = "<group>";
};
331C8082294A63A400263BE5 /* RunnerTests */ = {
isa = PBXGroup;
children = (
331C807B294A618700263BE5 /* RunnerTests.swift */,
);
path = RunnerTests;
sourceTree = "<group>";
};
97C146E51CF9000F007C117D = {
isa = PBXGroup;
children = (
9740EEB11CF90186004384FC /* Flutter */,
97C146F01CF9000F007C117D /* Runner */,
97C146EF1CF9000F007C117D /* Products */,
331C8082294A63A400263BE5 /* RunnerTests */,
);
sourceTree = "<group>";
};
97C146EF1CF9000F007C117D /* Products */ = {
isa = PBXGroup;
children = (
97C146EE1CF9000F007C117D /* Runner.app */,
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
97C146FA1CF9000F007C117D /* Main.storyboard */,
97C146FD1CF9000F007C117D /* Assets.xcassets */,
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
97C147021CF9000F007C117D /* Info.plist */,
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
);
path = Runner;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
331C8080294A63A400263BE5 /* RunnerTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
buildPhases = (
331C807D294A63A400263BE5 /* Sources */,
331C807E294A63A400263BE5 /* Frameworks */,
331C807F294A63A400263BE5 /* Resources */,
);
buildRules = (
);
dependencies = (
331C8086294A63A400263BE5 /* PBXTargetDependency */,
);
name = RunnerTests;
productName = RunnerTests;
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
97C146ED1CF9000F007C117D /* Runner */ = {
isa = PBXNativeTarget;
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
buildPhases = (
9740EEB61CF901F6004384FC /* Run Script */,
97C146EA1CF9000F007C117D /* Sources */,
97C146EB1CF9000F007C117D /* Frameworks */,
97C146EC1CF9000F007C117D /* Resources */,
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
);
buildRules = (
);
dependencies = (
);
name = Runner;
productName = Runner;
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
productType = "com.apple.product-type.application";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1300;
ORGANIZATIONNAME = "";
TargetAttributes = {
331C8080294A63A400263BE5 = {
CreatedOnToolsVersion = 14.0;
TestTargetID = 97C146ED1CF9000F007C117D;
};
97C146ED1CF9000F007C117D = {
CreatedOnToolsVersion = 7.3.1;
LastSwiftMigration = 1100;
};
};
};
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
compatibilityVersion = "Xcode 9.3";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 97C146E51CF9000F007C117D;
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
97C146ED1CF9000F007C117D /* Runner */,
331C8080294A63A400263BE5 /* RunnerTests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
331C807F294A63A400263BE5 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EC1CF9000F007C117D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
);
name = "Thin Binary";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
9740EEB61CF901F6004384FC /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
alwaysOutOfDate = 1;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Run Script";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
331C807D294A63A400263BE5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
97C146EA1CF9000F007C117D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 97C146ED1CF9000F007C117D /* Runner */;
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C146FB1CF9000F007C117D /* Base */,
);
name = Main.storyboard;
sourceTree = "<group>";
};
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
97C147001CF9000F007C117D /* Base */,
);
name = LaunchScreen.storyboard;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
249021D3217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Profile;
};
249021D4217E4FDB00AE95B9 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.fiszkiProjekt;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Profile;
};
331C8088294A63A400263BE5 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = AE0B7B92F70575B8D7E0D07E /* Pods-RunnerTests.debug.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.fiszkiProjekt.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Debug;
};
331C8089294A63A400263BE5 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 89B67EB44CE7B6631473024E /* Pods-RunnerTests.release.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.fiszkiProjekt.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Release;
};
331C808A294A63A400263BE5 /* Profile */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 640959BDD8F10B91D80A66BE /* Pods-RunnerTests.profile.xcconfig */;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
GENERATE_INFOPLIST_FILE = YES;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.example.fiszkiProjekt.RunnerTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
name = Profile;
};
97C147031CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
97C147041CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SUPPORTED_PLATFORMS = iphoneos;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.fiszkiProjekt;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Debug;
};
97C147071CF9000F007C117D /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.fiszkiProjekt;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
331C8088294A63A400263BE5 /* Debug */,
331C8089294A63A400263BE5 /* Release */,
331C808A294A63A400263BE5 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147031CF9000F007C117D /* Debug */,
97C147041CF9000F007C117D /* Release */,
249021D3217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
97C147061CF9000F007C117D /* Debug */,
97C147071CF9000F007C117D /* Release */,
249021D4217E4FDB00AE95B9 /* Profile */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 97C146E61CF9000F007C117D /* Project object */;
}

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "self:">
</FileRef>
</Workspace>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -0,0 +1,98 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</MacroExpansion>
<Testables>
<TestableReference
skipped = "NO"
parallelizable = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "331C8080294A63A400263BE5"
BuildableName = "RunnerTests.xctest"
BlueprintName = "RunnerTests"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
BuildableName = "Runner.app"
BlueprintName = "Runner"
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:Runner.xcodeproj">
</FileRef>
</Workspace>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PreviewsEnabled</key>
<false/>
</dict>
</plist>

View File

@ -0,0 +1,13 @@
import UIKit
import Flutter
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}

View File

@ -0,0 +1,122 @@
{
"images" : [
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "20x20",
"idiom" : "iphone",
"filename" : "Icon-App-20x20@3x.png",
"scale" : "3x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "iphone",
"filename" : "Icon-App-29x29@3x.png",
"scale" : "3x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "iphone",
"filename" : "Icon-App-40x40@3x.png",
"scale" : "3x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@2x.png",
"scale" : "2x"
},
{
"size" : "60x60",
"idiom" : "iphone",
"filename" : "Icon-App-60x60@3x.png",
"scale" : "3x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@1x.png",
"scale" : "1x"
},
{
"size" : "20x20",
"idiom" : "ipad",
"filename" : "Icon-App-20x20@2x.png",
"scale" : "2x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@1x.png",
"scale" : "1x"
},
{
"size" : "29x29",
"idiom" : "ipad",
"filename" : "Icon-App-29x29@2x.png",
"scale" : "2x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@1x.png",
"scale" : "1x"
},
{
"size" : "40x40",
"idiom" : "ipad",
"filename" : "Icon-App-40x40@2x.png",
"scale" : "2x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@1x.png",
"scale" : "1x"
},
{
"size" : "76x76",
"idiom" : "ipad",
"filename" : "Icon-App-76x76@2x.png",
"scale" : "2x"
},
{
"size" : "83.5x83.5",
"idiom" : "ipad",
"filename" : "Icon-App-83.5x83.5@2x.png",
"scale" : "2x"
},
{
"size" : "1024x1024",
"idiom" : "ios-marketing",
"filename" : "Icon-App-1024x1024@1x.png",
"scale" : "1x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 462 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 704 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 762 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "LaunchImage.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "LaunchImage@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

View File

@ -0,0 +1,5 @@
# Launch Screen Assets
You can customize the launch screen with your own desired assets by replacing the image files in this directory.
You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="12121" systemVersion="16G29" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12089"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Ydg-fD-yQy"/>
<viewControllerLayoutGuide type="bottom" id="xbc-2k-c8Z"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" image="LaunchImage" translatesAutoresizingMaskIntoConstraints="NO" id="YRO-k0-Ey4">
</imageView>
</subviews>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="1a2-6s-vTC"/>
<constraint firstItem="YRO-k0-Ey4" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="4X2-HB-R7a"/>
</constraints>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
<resources>
<image name="LaunchImage" width="168" height="185"/>
</resources>
</document>

View File

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="BYZ-38-t0r">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
</dependencies>
<scenes>
<!--Flutter View Controller-->
<scene sceneID="tne-QT-ifu">
<objects>
<viewController id="BYZ-38-t0r" customClass="FlutterViewController" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="y3c-jy-aDJ"/>
<viewControllerLayoutGuide type="bottom" id="wfy-db-euE"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
</objects>
</scene>
</scenes>
</document>

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CLIENT_ID</key>
<string>361698509038-uj7u0mo71dpr0o5vs4vfb8h07nsrjkne.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.361698509038-uj7u0mo71dpr0o5vs4vfb8h07nsrjkne</string>
<key>API_KEY</key>
<string>AIzaSyDCcLaa7QfH8Uyj2vZd3IjZ3Ikedid84SI</string>
<key>GCM_SENDER_ID</key>
<string>361698509038</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>com.example.fiszkiProjekt</string>
<key>PROJECT_ID</key>
<string>fiszki3</string>
<key>STORAGE_BUCKET</key>
<string>fiszki3.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<false></false>
<key>IS_ANALYTICS_ENABLED</key>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<true></true>
<key>IS_GCM_ENABLED</key>
<true></true>
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:361698509038:ios:1281397c8a58552ea073ff</string>
</dict>
</plist>

51
ios/Runner/Info.plist Normal file
View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>Fiszki Projekt</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>fiszki_projekt</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>CADisableMinimumFrameDurationOnPhone</key>
<true/>
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
</dict>
</plist>

View File

@ -0,0 +1 @@
#import "GeneratedPluginRegistrant.h"

View File

@ -0,0 +1,12 @@
import Flutter
import UIKit
import XCTest
class RunnerTests: XCTestCase {
func testExample() {
// If you add code to the Runner application, consider adding tests here.
// See https://developer.apple.com/documentation/xctest for more information about using XCTest.
}
}

View File

@ -0,0 +1,7 @@
{
"file_generated_by": "FlutterFire CLI",
"purpose": "FirebaseAppID & ProjectID for this Firebase app in this directory",
"GOOGLE_APP_ID": "1:361698509038:ios:1281397c8a58552ea073ff",
"FIREBASE_PROJECT_ID": "fiszki3",
"GCM_SENDER_ID": "361698509038"
}

View File

@ -0,0 +1,86 @@
import 'dart:math';
import 'package:flutter/material.dart';
import '../configs/constants.dart';
//animacja połowy obrotu fiszki
class HalfFlipAnimation extends StatefulWidget {
const HalfFlipAnimation({
required this.secondHalfFlip,
required this.fistHalfFlipDone,
required this.child,
required this.animate,
required this.reset,
Key? key,
}) : super(key: key);
// zmienna przechowuje info o tym która połowa obrotu to jest
final bool secondHalfFlip;
// ta funkcja będzie wywołana gdy pierwsza połowa obrotu fiszki się dokona
final VoidCallback fistHalfFlipDone;
final Widget child;
final bool animate;
final bool reset;
@override
State<HalfFlipAnimation> createState() => _HalfFlipAnimationState();
}
class _HalfFlipAnimationState extends State<HalfFlipAnimation>
with SingleTickerProviderStateMixin {
late final AnimationController controllerFlipAnimation;
@override
void initState() {
super.initState();
controllerFlipAnimation = AnimationController(
duration: const Duration(milliseconds: constHalfFlipDuration),
vsync: this,
)..addListener(() {
if (controllerFlipAnimation.isCompleted) {
widget.fistHalfFlipDone.call();
}
});
}
@override
void dispose() {
controllerFlipAnimation.dispose();
super.dispose();
}
@override
void didUpdateWidget(HalfFlipAnimation oldWidget) {
super.didUpdateWidget(oldWidget);
if (widget.animate) {
controllerFlipAnimation.forward();
}
if (widget.reset) {
controllerFlipAnimation.reset();
}
}
@override
Widget build(BuildContext context) {
double rotationAdjustment = 0;
if (widget.secondHalfFlip) {
rotationAdjustment = pi / 2;
}
return AnimatedBuilder(
animation: controllerFlipAnimation,
builder: (context, child) {
final double animationValue = controllerFlipAnimation.value;
return Transform(
alignment: Alignment.center,
transform: Matrix4.identity()
..setEntry(3, 2, 0.001)
..rotateY((animationValue * pi) / 2)
..rotateY(rotationAdjustment),
child: widget.child,
);
},
);
}
}

View File

@ -0,0 +1,115 @@
import 'package:fiszki_projekt/enums/slide_direction_enum.dart';
import 'package:flutter/material.dart';
import '../configs/constants.dart';
// animacja dla wysuwania fiszki od dołu
class SlideAnimation extends StatefulWidget {
const SlideAnimation(
{required this.child,
required this.direction,
this.animate = true,
this.reset,
this.animationCompleted,
this.animationDuration = constFlashcardSizeSlideDuration,
this.animationDelay = 0,
super.key});
final Widget child;
final SlideDirectionEnum direction; //kierunek animacji z enuma
final bool animate;
final bool? reset;
final VoidCallback? animationCompleted;
final int animationDuration;
final int animationDelay;
@override
State<SlideAnimation> createState() => _SlideAnimationState();
}
class _SlideAnimationState extends State<SlideAnimation>
with SingleTickerProviderStateMixin {
late final AnimationController _animationController;
@override
void initState() {
_animationController = AnimationController(
duration: Duration(milliseconds: widget.animationDuration),
vsync: this,
)..addListener(() {
if (_animationController.isCompleted) {
widget.animationCompleted?.call();
}
});
super.initState();
}
@override
didUpdateWidget(covariant oldWidget) {
if (widget.reset == true) {
_animationController.reset();
}
if (widget.animate) {
if (widget.animationDelay > 0) {
Future.delayed(Duration(milliseconds: widget.animationDelay), () {
if (mounted) {
_animationController.forward();
}
});
} else {
_animationController.forward();
}
}
super.didUpdateWidget(oldWidget);
}
@override
void dispose() {
_animationController.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
late final Animation<Offset> animation;
Tween<Offset> tween;
// w tym switchu na podstawie wartosi SlideDirection (z enuma) tworzymy animajaje o danym kierunku.
switch (widget.direction) {
case SlideDirectionEnum.leftAway:
tween =
Tween<Offset>(begin: const Offset(0, 0), end: const Offset(-1, 0));
break;
case SlideDirectionEnum.rightAway:
tween =
Tween<Offset>(begin: const Offset(0, 0), end: const Offset(1, 0));
break;
case SlideDirectionEnum.leftIn:
tween =
Tween<Offset>(begin: const Offset(-1, 0), end: const Offset(0, 0));
break;
case SlideDirectionEnum.rightIn:
tween =
Tween<Offset>(begin: const Offset(1, 0), end: const Offset(0, 0));
break;
case SlideDirectionEnum.upIn:
tween =
Tween<Offset>(begin: const Offset(0, 1), end: const Offset(0, 0));
break;
case SlideDirectionEnum.none:
tween =
Tween<Offset>(begin: const Offset(0, 0), end: const Offset(0, 0));
break;
}
animation = tween.animate(
CurvedAnimation(parent: _animationController, curve: Curves.easeInOut));
return SlideTransition(
position: animation,
child: widget.child,
);
}
}

View File

@ -0,0 +1,40 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../notifiers/flashcards_notifier.dart';
import '../../pages/home_page.dart';
class CustomAppBar extends StatelessWidget {
const CustomAppBar({
Key? key,
}) : super(key: key);
void _resetAndNavigateToHomePage(
BuildContext context, FlashcardsNotifier notifier) {
notifier.resetFlashcards();
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(builder: (context) => const HomePage()),
(route) => false,
);
}
@override
Widget build(BuildContext context) {
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) {
return AppBar(
actions: [
IconButton(
onPressed: () {
_resetAndNavigateToHomePage(context, notifier);
},
icon: const Icon(Icons.clear),
),
],
title: Text(notifier.topic),
);
},
);
}
}

View File

@ -0,0 +1,68 @@
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:flutter/material.dart';
import 'package:flutter_tts/flutter_tts.dart';
import '../../data/word.dart';
class TTSButton extends StatefulWidget {
const TTSButton({super.key, required this.word, this.iconSize = 50});
final Word word;
final double iconSize;
@override
State<TTSButton> createState() => _TTSButtonState();
}
class _TTSButtonState extends State<TTSButton> {
bool _isTapped = false;
final FlutterTts _tts = FlutterTts();
@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) {
_setUpTTS();
});
}
@override
void dispose() {
_tts.stop();
super.dispose();
}
@override
Widget build(BuildContext context) {
return Expanded(
child: IconButton(
onPressed: () {
_runTts(text: widget.word.german);
setState(() {
_isTapped = true;
});
Future.delayed(const Duration(milliseconds: 600), () {
setState(() {
_isTapped = false;
});
});
},
icon: Icon(
Icons.audiotrack_rounded,
size: widget.iconSize,
color: _isTapped ? constBackgroundColor : Colors.red,
),
),
);
}
void _setUpTTS() async {
//ustawienie jezyka na niemiecki
await _tts.setLanguage('de');
await _tts.setSpeechRate(0.6);
}
void _runTts({required String text}) async {
await _tts.speak(text);
}
}

View File

@ -0,0 +1,73 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../animations/half_flip_animation.dart';
import '../../animations/slide_animation.dart';
import '../../configs/constants.dart';
import '../../enums/slide_direction_enum.dart';
import '../../notifiers/flashcards_notifier.dart';
import 'card_display.dart';
class Card1 extends StatelessWidget {
const Card1({
super.key,
});
@override
Widget build(BuildContext context) {
final screenSize = MediaQuery.of(context).size;
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) => GestureDetector(
// gdy fliszka zostanie naciśnięta 2 razy to się obraca
onDoubleTap: () {
notifier.runflipCard1();
notifier.setIgnoreTouch(ignore: true);
},
child: HalfFlipAnimation(
animate: notifier.flipCard1,
reset: notifier.resetFlipCard1,
secondHalfFlip: false,
fistHalfFlipDone: () {
notifier.resetCard1();
//gdy pierwsza część animacji obrotu kart sie zrobi to wywołuje tu wykonanie drugiej części
notifier.runflipCard2();
debugPrint('anim1 flip zrobiony');
},
child: SlideAnimation(
animationDuration: constFlashcardUpSlideDuratoin,
animationDelay: 100,
animationCompleted: () {
notifier.setIgnoreTouch(ignore: false);
},
reset: notifier.resetSlideCard1,
//gdy slideCard1 zmienia się na true to wyświetlamy kolejną karte
animate: notifier.slideCard1 && !notifier.isRoundCompleted,
//tutaj z enuma wybieram kierunek animacji
direction: SlideDirectionEnum.upIn,
// animacja dla fiszki
child: Center(
// to jest katta fiszki
child: Container(
width: screenSize.width *
constFlashcardWidth, // wymiary fiszki na podstawie ekranu
height: screenSize.height * constFlashcardHeigth,
decoration: BoxDecoration(
border: Border.all(
color: Colors.white,
width: constFlashcardBorderWidth,
),
borderRadius:
BorderRadius.circular(constBorderRadiusElevatedButtons),
color: Theme.of(context).primaryColor,
),
child: const CardDisplay(
isCard1: true,
), // mój widżet
),
),
),
),
),
);
}
}

View File

@ -0,0 +1,88 @@
import 'dart:math';
import 'package:fiszki_projekt/components/flashcards_page/card_display.dart';
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../animations/half_flip_animation.dart';
import '../../animations/slide_animation.dart';
import '../../enums/slide_direction_enum.dart';
import '../../notifiers/flashcards_notifier.dart';
class Card2 extends StatelessWidget {
const Card2({
super.key,
});
@override
Widget build(BuildContext context) {
final size = MediaQuery.of(context).size;
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) => GestureDetector(
//gdy fiszka zostanie przesunięta w lewo lub prawo
onHorizontalDragEnd: (details) {
debugPrint('WARTOŚĆ SWIPE: ${details.primaryVelocity}');
if (details.primaryVelocity! > 0) {
//gdy fiszka zostanie przesunięta w lewo
notifier.runSwipeCard2(direction: SlideDirectionEnum.leftAway);
notifier.runSlideCard1();
notifier.setIgnoreTouch(ignore: true);
//generujemy nowe słowo na nową fisze po przesunięciu
notifier.generateCurrentWord(context: context);
}
if (details.primaryVelocity! < 0) {
//gdy fiszka zostanie przesunięta w prawo
notifier.runSwipeCard2(direction: SlideDirectionEnum.rightAway);
notifier.runSlideCard1();
notifier.setIgnoreTouch(ignore: true);
//generujemy nowe słowo na nową fisze po przesunięciu
notifier.generateCurrentWord(context: context);
}
},
child: HalfFlipAnimation(
animate: notifier.flipCard2,
reset: notifier.resetFlipCard2,
secondHalfFlip: true,
fistHalfFlipDone: () {
debugPrint('anim2 flip zrobiony');
//po animacji już można dotykać karty
notifier.setIgnoreTouch(ignore: false);
},
child: SlideAnimation(
animationCompleted: () {
notifier.resetCard2();
},
reset: notifier.resetSwipeCard2,
//ta animacja sie odpali jesli swipeCard2 będzie true
animate: notifier.swipeCard2,
//tutaj z enuma wybieram kierunek animacji
direction: notifier.swipedDirection,
// animacja dla fiszki
child: Center(
// to jest katta fiszki
child: Container(
width: size.width *
constFlashcardWidth, // wymiary fiszki na podstawie ekranu
height: size.height * constFlashcardHeigth,
decoration: BoxDecoration(
border: Border.all(
color: Colors.white,
width: constFlashcardBorderWidth,
),
borderRadius:
BorderRadius.circular(constBorderRadiusElevatedButtons),
color: Theme.of(context).primaryColor,
),
child: Transform(
alignment: Alignment.center,
transform: Matrix4.rotationY(pi),
child: const CardDisplay(isCard1: false)),
),
),
),
),
),
);
}
}

View File

@ -0,0 +1,83 @@
import 'package:fiszki_projekt/components/app/tts_button.dart';
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:fiszki_projekt/notifiers/settings_notifier.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../enums/settings_enum.dart';
class CardDisplay extends StatelessWidget {
const CardDisplay({
required this.isCard1,
super.key,
});
final bool isCard1;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(28.0),
child: Consumer<SettingsNotifier>(
builder: (_, notifier, __) {
final setPolishFirst = notifier.displayOptions.entries
.firstWhere((element) => element.key == SettingsEnum.polishFirst)
.value;
final showAudio = notifier.displayOptions.entries
.firstWhere((element) => element.key == SettingsEnum.showAudio)
.value;
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) => isCard1
? Column(
// pierwsza strona fiszki
children: [
if (setPolishFirst) ...[
buildTextBox(notifier.word1.polish, context, 1)
] else if (!setPolishFirst) ...[
if (showAudio) ...[
buildTextBox(notifier.word1.german, context, 1),
TTSButton(word: notifier.word1)
] else if (!showAudio) ...[
buildTextBox(notifier.word1.german, context, 1),
]
]
],
)
: Column(
// druga strona fiszki
children: [
if (setPolishFirst) ...[
if (showAudio) ...[
buildTextBox(notifier.word2.german, context, 1),
TTSButton(word: notifier.word2)
] else if (!showAudio) ...[
buildTextBox(notifier.word2.german, context, 1),
]
] else if (!setPolishFirst) ...[
buildTextBox(notifier.word2.polish, context, 1)
]
],
),
);
},
),
);
}
}
Expanded buildTextBox(String text, BuildContext context, int flex) {
return Expanded(
flex: flex,
child: SizedBox(
width: double.infinity,
height: double.infinity,
child: FittedBox(
child: Text(
text,
style: Theme.of(context).textTheme.displayLarge,
),
),
));
}

View File

@ -0,0 +1,71 @@
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../configs/constants.dart';
import '../../enums/slide_direction_enum.dart';
class LeftRightButtons extends StatelessWidget {
const LeftRightButtons({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
final size = MediaQuery.of(context).size;
final buttonWidth = (size.width * 0.8) / 2;
final buttonHeight = (size.height * 0.06);
Widget buildButton(String buttonText, Color buttonColor) {
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) => GestureDetector(
child: ElevatedButton(
onPressed: () {
if (notifier.flipCard2) {
if (buttonText == 'Umiem!') {
notifier.runSwipeCard2(
direction: SlideDirectionEnum.leftAway);
notifier.runSlideCard1();
notifier.setIgnoreTouch(ignore: true);
//generujemy nowe słowo na nową fisze po przesunięciu
notifier.generateCurrentWord(context: context);
} else if (buttonText == 'Nie umiem') {
notifier.runSwipeCard2(
direction: SlideDirectionEnum.rightAway);
notifier.runSlideCard1();
notifier.setIgnoreTouch(ignore: true);
//generujemy nowe słowo na nową fisze po przesunięciu
notifier.generateCurrentWord(context: context);
}
}
},
style: ElevatedButton.styleFrom(
backgroundColor: buttonColor,
),
child: SizedBox(
width: buttonWidth,
height: buttonHeight,
child: Center(
child: Text(
buttonText,
textAlign: TextAlign.center,
),
),
),
),
),
);
}
return Container(
margin: const EdgeInsets.only(bottom: 8.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
buildButton('Nie umiem',
constLeftButtonColor), // Set the desired color for the left button
buildButton('Umiem!',
constRightButtonColor), // Set the desired color for the right button
],
),
);
}
}

View File

@ -0,0 +1,75 @@
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
class ProgressBar extends StatefulWidget {
const ProgressBar({super.key});
@override
State<ProgressBar> createState() => _ProgressBarState();
}
class _ProgressBarState extends State<ProgressBar>
with SingleTickerProviderStateMixin {
late AnimationController _controller;
//wartości aby wiedzieć jak zanimować progress bar
double progressBarState1 = 0.0;
double progressBarState2 = 0.0;
@override
void initState() {
super.initState();
_controller = AnimationController(
duration: const Duration(milliseconds: constProgressBarIncreaseDuration),
vsync: this,
);
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
void startAnim() {
_controller.reset();
_controller.forward();
progressBarState1 = progressBarState2;
}
@override
Widget build(BuildContext context) {
final screenSize = MediaQuery.of(context).size;
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) {
progressBarState2 = notifier.percentComplete;
if (progressBarState2 == 0) {
progressBarState1 = 0;
}
var animation =
Tween<double>(begin: progressBarState1, end: progressBarState2)
.animate(CurvedAnimation(
parent: _controller, curve: Curves.easeInOutCubic));
startAnim();
return AnimatedBuilder(
animation: _controller,
builder: (context, child) => Padding(
padding: EdgeInsets.all(screenSize.width * 0.05),
child: ClipRRect(
borderRadius:
BorderRadius.circular(constBorderRadiusElevatedButtons),
child: LinearProgressIndicator(
minHeight: screenSize.height * 0.03,
value: animation.value,
),
),
),
);
},
);
}
}

View File

@ -0,0 +1,124 @@
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:fiszki_projekt/pages/flashcards_page.dart';
import 'package:fiszki_projekt/pages/home_page.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../databases/database_manager.dart';
class ResultsBox extends StatefulWidget {
const ResultsBox({super.key});
@override
State<ResultsBox> createState() => _ResultsBoxState();
}
class _ResultsBoxState extends State<ResultsBox> {
bool _haveSavedCards = false;
@override
Widget build(BuildContext context) {
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) {
return AlertDialog(
title: Text(
notifier.isSessionCompleted
? 'Umiesz już wszystko!'
: 'Koniec rundy',
textAlign: TextAlign.center,
),
content: SingleChildScrollView(
child: DataTable(
columnSpacing: 8.0,
columns: const [
DataColumn(label: Text('Statystyka')),
DataColumn(label: Text('Wartość')),
],
rows: [
buildDataRow(
title: 'Runda:', stat: notifier.roundCounter.toString()),
buildDataRow(
title: 'Liczba fiszek:',
stat: notifier.totalCardsCounter.toString()),
buildDataRow(
title: 'Nie umiesz:',
stat: notifier.incorrectCardsCounter.toString()),
buildDataRow(
title: 'Umiesz:',
stat: notifier.correctCardsCounter.toString()),
buildDataRow(
title: 'Procent:',
stat: '${notifier.correctPercentage.toString()}%'),
],
),
),
actions: [
if (!notifier.isSessionCompleted)
ElevatedButton(
onPressed: () {
Navigator.pushReplacement(
context,
MaterialPageRoute(
builder: (context) => const FlashcardsPage()));
},
child: const Text('Powtórka błędnych'),
),
const SizedBox(height: 8),
if (!notifier.isSessionCompleted)
ElevatedButton(
onPressed: _haveSavedCards
? null
: () async {
for (int i = 0;
i < notifier.incorrectFlashcards.length;
i++) {
await DatabaseManager().insertWord(
word: notifier.incorrectFlashcards[i]);
final words = await DatabaseManager().selectWords();
debugPrint(
'Wpisów do bazy lokalnej: ${words.length}');
}
setState(() {
_haveSavedCards = true;
});
},
child: const Text('Zapisz błędne do bazy'),
),
const SizedBox(height: 8),
ElevatedButton(
onPressed: () {
notifier.resetFlashcards();
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(builder: (context) => const HomePage()),
(route) => false,
);
},
child: const Text('Strona główna'),
),
],
);
},
);
}
DataRow buildDataRow({required String title, required String stat}) {
return DataRow(cells: [
DataCell(
Padding(
padding: const EdgeInsets.all(7.0),
child: Text(title),
),
),
DataCell(
Padding(
padding: const EdgeInsets.all(7.0),
child: Text(
stat,
textAlign: TextAlign.right,
),
),
),
]);
}
}

View File

@ -0,0 +1,87 @@
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../data/words.dart';
import '../../notifiers/flashcards_notifier.dart';
import '../../pages/flashcards_page.dart';
class TopicTile extends StatelessWidget {
const TopicTile({super.key, required this.topic});
final String topic;
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () => handleTap(context),
child: Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(constBorderRadiusElevatedButtons),
color: Theme.of(context).primaryColor,
),
child: Column(
children: [
buildNumberOfFlashcardsInSet(),
buildTopicText(),
],
),
),
);
}
void handleTap(BuildContext context) {
debugPrint('Naciśnięta kategoria: $topic');
loadSession(context: context, topic: topic);
}
Widget buildNumberOfFlashcardsInSet() {
return Consumer<FlashcardsNotifier>(
builder: (_, notifier, __) {
int wordCount = 0;
if (topic == '5 Losowych') {
wordCount = 5;
} else if (topic == '20 Losowych') {
wordCount = 20;
} else if (topic == 'Wszystko') {
// ignore: unused_local_variable
for (var word in words) {
wordCount++;
}
} else {
wordCount = notifier.countWordsForTopic(topic: topic);
}
return Expanded(
flex: 2,
child: Padding(
padding: const EdgeInsets.only(
top: 20.0, left: 10.0, right: 10.0, bottom: 10.0),
child: Text(
wordCount.toString(),
style:
const TextStyle(fontSize: constFontSizeTopicTileWordsCount),
),
),
);
},
);
}
Widget buildTopicText() {
return Expanded(
flex: 1,
child: Text(topic),
);
}
loadSession({required BuildContext context, required String topic}) {
Navigator.of(context).pushReplacement(
// pushReplacement nie pozwala wrócić do poprzedniej storny
MaterialPageRoute(builder: (context) => const FlashcardsPage()));
Provider.of<FlashcardsNotifier>(context, listen: false)
.setTopic(topic: topic);
}
}

View File

@ -0,0 +1,58 @@
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:fiszki_projekt/notifiers/saved_cards_notifier.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../enums/language_type_enum.dart';
class BottomButton extends StatelessWidget {
const BottomButton({
required this.languageType,
this.isDisabled = false,
Key? key,
}) : super(key: key);
final LanguageTypeEnum languageType;
final bool isDisabled;
@override
Widget build(BuildContext context) {
return Expanded(
child: Padding(
padding: const EdgeInsets.all(5.0),
child: SizedBox(
width: double.infinity,
child: ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColor: constMainColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0),
),
),
onPressed: isDisabled
? null
: () {
Provider.of<SavedCardsNotifier>(context, listen: false)
.updateShowLanguage(language: languageType);
},
child: Text(
languageType.toSymbol(),
style: const TextStyle(fontSize: 16.0),
),
),
),
),
);
}
}
extension LanguageSymbol on LanguageTypeEnum {
String toSymbol() {
switch (this) {
case LanguageTypeEnum.polish:
return 'Angielski';
case LanguageTypeEnum.german:
return 'Niemiecki';
}
}
}

View File

@ -0,0 +1,75 @@
import 'package:fiszki_projekt/components/app/tts_button.dart';
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:fiszki_projekt/notifiers/saved_cards_notifier.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../data/word.dart';
class WordTile extends StatelessWidget {
WordTile({
required this.word,
required this.animation,
this.onPressed,
super.key,
});
final Word word;
final Animation animation;
final _tweenOffset =
Tween<Offset>(begin: const Offset(1, 0), end: const Offset(0, 0));
final VoidCallback? onPressed;
@override
Widget build(BuildContext context) {
return SlideTransition(
position: animation
.drive(CurveTween(curve: Curves.easeInOutSine))
.drive(_tweenOffset),
child: Padding(
padding: const EdgeInsets.fromLTRB(8, 3, 8, 3),
child: Consumer<SavedCardsNotifier>(
builder: (_, notifier, __) => Container(
decoration: BoxDecoration(
color: Theme.of(context).primaryColor,
borderRadius:
BorderRadius.circular(constBorderRadiusElevatedButtons),
border: Border.all(
color: Colors.white,
width: 2,
)),
child: ListTile(
title: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
notifier.showPolish ? Text(word.polish) : const SizedBox(),
notifier.showGerman ? Text(word.german) : const SizedBox(),
],
),
trailing: SizedBox(
width: 75,
child: Row(
children: [
TTSButton(
word: word,
iconSize: 30,
),
Expanded(
child: IconButton(
icon: const Icon(Icons.clear),
onPressed: () {
onPressed?.call();
},
),
),
],
),
),
),
),
),
),
);
}
}

View File

@ -0,0 +1,40 @@
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:flutter/material.dart';
class TopButton extends StatelessWidget {
const TopButton({
required this.title,
required this.onPressed,
this.isDisabled = false,
Key? key,
}) : super(key: key);
final String title;
final VoidCallback onPressed;
final bool isDisabled;
@override
Widget build(BuildContext context) {
return Expanded(
child: Padding(
padding: const EdgeInsets.all(10.0),
child: SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: isDisabled ? null : onPressed,
style: ElevatedButton.styleFrom(
backgroundColor: constMainColor,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(8.0),
),
),
child: Text(
title,
style: const TextStyle(fontSize: 16.0),
),
),
),
),
);
}
}

View File

@ -0,0 +1,36 @@
import 'package:flutter/material.dart';
class SettingsTile extends StatelessWidget {
const SettingsTile({
required this.icon,
required this.title,
required this.callbackFunction,
Key? key,
}) : super(key: key);
final Icon icon;
final String title;
final VoidCallback callbackFunction;
@override
Widget build(BuildContext context) {
return InkWell(
onTap: callbackFunction,
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: Row(
children: [
Padding(
padding: const EdgeInsets.all(16.0),
child: icon,
),
Text(
title,
style: const TextStyle(fontSize: 16.0),
),
],
),
),
);
}
}

View File

@ -0,0 +1,49 @@
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../../enums/settings_enum.dart';
import '../../notifiers/settings_notifier.dart';
class SwitchButton extends StatelessWidget {
const SwitchButton({
required this.displayOption,
required this.text,
super.key,
});
final SettingsEnum displayOption;
final String text;
@override
Widget build(BuildContext context) {
return Consumer<SettingsNotifier>(
builder: (_, notifier, __) => Column(
children: [
SwitchListTile(
inactiveThumbColor: Colors.black.withOpacity(0.6),
tileColor: Colors.black.withOpacity(0.6),
title: Text(
text,
style: const TextStyle(
fontWeight: FontWeight.bold,
),
),
value: notifier.displayOptions.entries
.firstWhere((element) => element.key == displayOption)
.value,
onChanged: (value) {
notifier.udpateDisplayOptions(
displayOption: displayOption,
isOn: value,
);
},
),
const Divider(
height: 2,
thickness: 2,
),
],
),
);
}
}

View File

@ -0,0 +1,35 @@
import 'package:flutter/material.dart';
const Color constMainColor = Color.fromARGB(255, 161, 25, 202);
const Color constBackgroundColor = Color.fromARGB(255, 89, 84, 88);
const Color constLeftButtonColor = Color.fromARGB(255, 184, 48, 14);
const Color constRightButtonColor = Color.fromARGB(255, 76, 184, 14);
//wysokość AppBar (poza ekranem głównm)
const double constAppBarH = 60;
const double constIconPadding = 0.06;
//czas animacji przesunięcie fiszki lewo/prawo
const int constFlashcardSizeSlideDuration = 300;
//czas animacji wyjechania fiszki z dołu ekranu
const int constFlashcardUpSlideDuratoin = 400;
//czas połowy obrotu fiszki
const int constHalfFlipDuration = 200;
const double constBorderRadiusElevatedButtons = 10;
const double constFlashcardBorderWidth = 3;
//wymiary karty fiszki - wartości od 0 do 1 bo to jest mnożone przed wymar ekaranu
const double constFlashcardHeigth = 0.68;
const double constFlashcardWidth = 0.85;
const double constHomePageAppbarHeigth = 0.1;
//rozmiar tekstu dla liczby słówek w danym secie (na home page)
const double constFontSizeTopicTileWordsCount = 30;
const int constProgressBarIncreaseDuration = 250;

68
lib/configs/themes.dart Normal file
View File

@ -0,0 +1,68 @@
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
final appTheme = ThemeData(
// style dla aplikacji ogólnie
primaryColor: constMainColor,
textTheme: TextTheme(
bodyMedium: TextStyle(
color: Colors.white,
fontSize: 18,
fontFamily: GoogleFonts.notoSans().fontFamily,
),
displayLarge: TextStyle(
color: Colors.white,
fontSize: 58,
fontFamily: GoogleFonts.notoSans().fontFamily,
fontWeight: FontWeight.bold,
),
),
appBarTheme: AppBarTheme(
// style dla appbar - tego paska na górze (dla każdego appbar w aplikacji)
elevation: 0,
centerTitle: true,
titleTextStyle: TextStyle(
fontFamily: GoogleFonts.notoSans().fontFamily,
fontSize: 20,
color: Colors.white, // kolor tekstu w appbar
fontWeight: FontWeight.bold),
color: constMainColor),
scaffoldBackgroundColor: constBackgroundColor,
//theme dla podsumowania fiszek
dialogTheme: DialogTheme(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(constBorderRadiusElevatedButtons),
),
backgroundColor: constMainColor,
titleTextStyle: TextStyle(
fontFamily: GoogleFonts.notoSans().fontFamily,
fontSize: 20,
color: Colors.white),
),
//styl dla elevatedbutton
elevatedButtonTheme: ElevatedButtonThemeData(
style: ElevatedButton.styleFrom(
shape: RoundedRectangleBorder(
borderRadius:
BorderRadius.circular(constBorderRadiusElevatedButtons),
side: const BorderSide(color: Colors.white),
),
backgroundColor: constBackgroundColor,
textStyle: TextStyle(
fontFamily: GoogleFonts.notoSans().fontFamily,
color: Colors.white,
fontSize: 15,
))),
progressIndicatorTheme: const ProgressIndicatorThemeData(
color: constMainColor,
linearTrackColor: Colors.grey,
),
//styl guzików w settings
switchTheme: SwitchThemeData(
thumbColor: MaterialStateProperty.all<Color>(constMainColor)),
listTileTheme: const ListTileThemeData(
textColor: Colors.white,
iconColor: Colors.white,
));

27
lib/data/word.dart Normal file
View File

@ -0,0 +1,27 @@
class Word {
final String topic;
final String polish;
final String german;
Word({
required this.topic,
required this.polish,
required this.german,
});
Map<String, dynamic> toMap() {
return {
'topic': topic,
'polish': polish,
'german': german,
};
}
factory Word.fromMap({required Map<String, dynamic> map}) {
return Word(
topic: map['topic'],
polish: map['polish'],
german: map['german'],
);
}
}

82
lib/data/words.dart Normal file
View File

@ -0,0 +1,82 @@
import 'word.dart';
final List<Word> words = [
Word(topic: "Sport", polish: "wyróżnienie", german: "die Auszeichnung"),
Word(topic: "Sport", polish: "obóz treningowy", german: "das Trainingslager"),
Word(topic: "Sport", polish: "dyscyplina sportowa", german: "die Sportart"),
Word(topic: "Sport", polish: "co najmniej", german: "mindestens"),
Word(
topic: "Sport",
polish: "skakać",
german: "springen / sprang / ist gesprungen"),
Word(topic: "Sport", polish: "stromy", german: "steil"),
Word(topic: "Sport", polish: "równowaga", german: "das Gleichgewicht"),
Word(topic: "Sport", polish: "upadać", german: "stürzen"),
Word(
topic: "Sport", polish: "ubranie ochronne", german: "die Schutzkleidung"),
Word(topic: "Sport", polish: "ochraniacz", german: "der Schützer"),
Word(
topic: "Sport", polish: "ryzyko urazu ", german: "die Verletzungsgefahr"),
Word(topic: "Sport", polish: "zawodowiec", german: "der Profi"),
Word(topic: "Sport", polish: "wyposażenie", german: "die Ausrüstung"),
Word(topic: "Sport", polish: "początkujący", german: "der Anfänger"),
Word(topic: "Sport", polish: "odważny", german: "mutig"),
Word(topic: "EG/115", polish: "ciasto", german: "der Keks"),
Word(topic: "EG/115", polish: "żart", german: "der Scherz"),
Word(topic: "EG/115", polish: "próbować", german: "versuchen"),
Word(topic: "EG/115", polish: "podróżować", german: "reisen"),
Word(topic: "EG/115", polish: "ogłoszenie", german: "die Ankündigung"),
Word(topic: "EG/115", polish: "obiecać", german: "versprechen"),
Word(topic: "EG/115", polish: "guzik", german: "der Knopf"),
Word(topic: "EG/115", polish: "presja", german: "der Druck"),
Word(topic: "EG/115", polish: "pub", german: "die Kneipe"),
Word(topic: "EG/115", polish: "poznać", german: "kennenlernen"),
Word(topic: "EG/115", polish: "dystans", german: "der Abstand"),
Word(topic: "EG/115", polish: "trenować fizycznie", german: "klappen"),
Word(topic: "EG/115", polish: "wysłać coś", german: "etw. zuschicken"),
Word(topic: "EG/115", polish: "odbywac się", german: "stattfinden"),
Word(topic: "EG/115", polish: "opóźnienie", german: "die Verzögerung"),
Word(topic: "EG/115", polish: "odcinek (serialu)", german: "die Sendung"),
Word(topic: "EG/115", polish: "nastolatek", german: "der Jugendliche"),
Word(topic: "EG/115", polish: "wyrzucić", german: "wegschmeißen"),
Word(topic: "EG/115", polish: "przypomnieć sobie", german: "sich erinnern"),
Word(topic: "EG/115", polish: "doświadczyć czegoś", german: "miterleben"),
Word(topic: "EG/115", polish: "pod kontrolą", german: "unter Kontrolle"),
Word(topic: "EG/115", polish: "historia", german: "die Geschichte"),
Word(
topic: "EG/115", polish: "obszar badawczy", german: "das Forschungsfeld"),
Word(topic: "zdrowie", polish: "ból", german: "der Schmerz"),
Word(
topic: "zdrowie",
polish: "mierzyć ciśnienie",
german: "den Blutdruck messen"),
Word(
topic: "zdrowie",
polish: "zwolnienie lekarskie",
german: "krank|schreiben"),
Word(topic: "zdrowie", polish: "zwalczać", german: "bekämpfen"),
Word(topic: "zdrowie", polish: "ból gardła", german: "der Halsschmerz"),
Word(topic: "zdrowie", polish: "zioła", german: "die Kräuter "),
Word(topic: "zdrowie", polish: "odżywianie", german: "die Ernährung"),
Word(
topic: "zdrowie",
polish: "życzę powrotu do zdrowia",
german: "gute Besserung!"),
Word(topic: "zdrowie", polish: "słabe zdrowie", german: "zarte Gesundheit "),
Word(
topic: "zdrowie",
polish: "co za dużo, to niezdrowo",
german: "allzu viel ist ungesund "),
Word(topic: "zdrowie", polish: "zdrów jak rydz ", german: "kerngesund "),
Word(
topic: "zdrowie",
polish: "auf Zucker verzichten ",
german: "unikać cukru"),
Word(topic: "testowy", polish: "paszport", german: "der Reisepass"),
Word(
topic: "testowy",
polish: "dowód osobisty",
german: "der (Personal)Ausweis"),
Word(topic: "testowy", polish: "skręcić", german: "(ab)biegen"),
Word(topic: "testowy", polish: "szachy", german: "das Schach"),
];

View File

@ -0,0 +1,60 @@
import 'package:path/path.dart';
import 'package:sqflite/sqflite.dart';
import '../data/word.dart';
class DatabaseManager {
//prywatny konstruktor - singleton pattern aby była tylko jedna instancja bazy danych
DatabaseManager._internal();
static final _instance = DatabaseManager._internal();
factory DatabaseManager() => _instance;
//kod bazy danych
final String _database = 'flashcards2.db';
final String _table = 'words';
final String _column1 = 'topic';
final String _column2 = 'polish ';
final String _column3 = 'german';
Future<Database> initDatabase() async {
final devicesPath = await getDatabasesPath();
final path = join(devicesPath, _database);
return await openDatabase(path, onCreate: (db, version) {
db.execute(
'CREATE TABLE $_table($_column1 TEXT, $_column2 TEXT PRIMARY KEY, $_column3 TEXT)');
}, version: 1);
}
Future<void> insertWord({required Word word}) async {
final db = await initDatabase();
await db.insert(_table, word.toMap(),
conflictAlgorithm: ConflictAlgorithm.replace);
}
Future<List<Word>> selectWords({int? limit}) async {
final db = await initDatabase();
List<Map<String, dynamic>> maps =
await db.query(_table, limit: limit, orderBy: 'RANDOM()');
return List.generate(
maps.length, (index) => Word.fromMap(map: maps[index]));
}
Future<void> removeWord({required Word word}) async {
final db = await initDatabase();
await db.delete(_table, where: 'polish = ?', whereArgs: [word.polish]);
}
Future<void> removeAllWords() async {
final db = await initDatabase();
await db.delete(_table);
}
Future<void> removeDatabase() async {
final devicesPath = await getDatabasesPath();
final path = join(devicesPath, _database);
await deleteDatabase(path);
}
}

View File

@ -0,0 +1,4 @@
enum LanguageTypeEnum {
polish,
german,
}

View File

@ -0,0 +1,4 @@
enum SettingsEnum {
polishFirst,
showAudio,
}

View File

@ -0,0 +1 @@
enum SlideDirectionEnum { none, leftAway, rightAway, upIn, leftIn, rightIn }

28
lib/main.dart Normal file
View File

@ -0,0 +1,28 @@
import 'package:fiszki_projekt/configs/themes.dart';
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:fiszki_projekt/notifiers/saved_cards_notifier.dart';
import 'package:fiszki_projekt/notifiers/settings_notifier.dart';
import 'package:fiszki_projekt/pages/home_page.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
void main() {
runApp(MultiProvider(providers: [
ChangeNotifierProvider(create: (_) => FlashcardsNotifier()),
ChangeNotifierProvider(create: (_) => SettingsNotifier()),
ChangeNotifierProvider(create: (_) => SavedCardsNotifier()),
], child: const MyApp()));
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Projekt fiszki',
theme: appTheme,
home: const HomePage(),
);
}
}

View File

@ -0,0 +1,184 @@
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:fiszki_projekt/components/flashcards_page/results_box.dart';
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:fiszki_projekt/data/word.dart';
import 'package:fiszki_projekt/data/words.dart';
import 'package:fiszki_projekt/enums/slide_direction_enum.dart';
class FlashcardsNotifier extends ChangeNotifier {
int roundCounter = 0;
int totalCardsCounter = 0;
int correctCardsCounter = 0;
int incorrectCardsCounter = 0;
int correctPercentage = 0;
double percentComplete = 0.0;
List<Word> incorrectFlashcards = [];
String topic = '';
Word word1 = Word(topic: "", polish: "", german: "");
Word word2 = Word(topic: "", polish: "", german: "");
List<Word> selectedWords = [];
bool isFirstround = true;
bool isRoundCompleted = false;
bool isSessionCompleted = false;
resetFlashcards() {
resetCard1();
resetCard2();
incorrectFlashcards.clear();
isFirstround = true;
isRoundCompleted = false;
isSessionCompleted = false;
roundCounter = 0;
}
setTopic({required String topic}) {
this.topic = topic;
notifyListeners();
}
generateAllSelectedWords() {
words.shuffle();
isRoundCompleted = false;
if (isFirstround) {
if (topic == '5 Losowych') {
selectedWords = words.take(5).toList();
} else if (topic == '20 Losowych') {
selectedWords = words.take(20).toList();
} else if (topic == 'Wszystko') {
selectedWords = words.toList();
} else if (topic != 'Review') {
selectedWords =
words.where((element) => element.topic == topic).toList();
}
} else {
selectedWords = incorrectFlashcards.toList();
incorrectFlashcards.clear();
}
roundCounter++;
totalCardsCounter = selectedWords.length;
correctCardsCounter = 0;
incorrectCardsCounter = 0;
resetProgressBar();
}
generateCurrentWord({required BuildContext context}) {
if (selectedWords.isNotEmpty) {
final r = Random().nextInt(selectedWords.length);
word1 = selectedWords[r];
selectedWords.removeAt(r);
} else {
if (incorrectFlashcards.isEmpty) {
isSessionCompleted = true;
}
isRoundCompleted = true;
isFirstround = false;
calculateCorrectPercentage();
debugPrint("wszystkie słowa wybrane");
Future.delayed(const Duration(milliseconds: 500), () {
showDialog(context: context, builder: (context) => ResultsBox());
});
}
Future.delayed(
const Duration(milliseconds: constFlashcardSizeSlideDuration), () {
word2 = word1;
});
}
calculateCorrectPercentage() {
final percentage = correctCardsCounter / totalCardsCounter;
correctPercentage = (percentage * 100).round();
}
calculateCompletedPercent() {
percentComplete =
(correctCardsCounter + incorrectCardsCounter) / totalCardsCounter;
notifyListeners();
}
resetProgressBar() {
percentComplete = 0.0;
notifyListeners();
}
updateCardOutcome({required Word word, required bool isCorrect}) {
if (!isCorrect) {
incorrectFlashcards.add(word);
incorrectCardsCounter++;
} else {
correctCardsCounter++;
}
calculateCompletedPercent();
notifyListeners();
}
bool ignoreTouches = true;
setIgnoreTouch({required bool ignore}) {
ignoreTouches = ignore;
notifyListeners();
}
SlideDirectionEnum swipedDirection = SlideDirectionEnum.none;
bool slideCard1 = false;
bool flipCard1 = false;
bool flipCard2 = false;
bool swipeCard2 = false;
bool resetSlideCard1 = false;
bool resetFlipCard1 = false;
bool resetFlipCard2 = false;
bool resetSwipeCard2 = false;
runSlideCard1() {
resetSlideCard1 = false;
slideCard1 = true;
notifyListeners();
}
runflipCard1() {
resetFlipCard1 = false;
flipCard1 = true;
notifyListeners();
}
resetCard1() {
resetSlideCard1 = true;
resetFlipCard1 = true;
slideCard1 = false;
flipCard1 = false;
}
runflipCard2() {
resetFlipCard2 = false;
flipCard2 = true;
notifyListeners();
}
runSwipeCard2({required SlideDirectionEnum direction}) {
updateCardOutcome(
word: word2, isCorrect: direction == SlideDirectionEnum.leftAway);
resetSwipeCard2 = false;
swipedDirection = direction;
swipeCard2 = true;
notifyListeners();
}
resetCard2() {
resetSwipeCard2 = true;
resetFlipCard2 = true;
swipeCard2 = false;
flipCard2 = false;
}
int countWordsForTopic({required String topic}) {
return words.where((word) => word.topic == topic).length;
}
}

View File

@ -0,0 +1,24 @@
import 'package:fiszki_projekt/enums/language_type_enum.dart';
import 'package:flutter/material.dart';
class SavedCardsNotifier extends ChangeNotifier {
bool showPolish = true, showGerman = true, buttonsAreDisabled = false;
disableButtons({required bool disable}) {
buttonsAreDisabled = disable;
notifyListeners();
}
updateShowLanguage({required LanguageTypeEnum language}) {
switch (language) {
case LanguageTypeEnum.polish:
showPolish = !showPolish;
break;
case LanguageTypeEnum.german:
showGerman = !showGerman;
break;
}
notifyListeners();
}
}

View File

@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
import 'package:shared_preferences/shared_preferences.dart';
import '../enums/settings_enum.dart';
class SettingsNotifier extends ChangeNotifier {
Map<SettingsEnum, bool> displayOptions = {
SettingsEnum.polishFirst: true,
SettingsEnum.showAudio: false
};
udpateDisplayOptions(
{required SettingsEnum displayOption, required bool isOn}) {
displayOptions.update(displayOption, (value) => isOn);
SharedPreferences.getInstance().then((prefs) {
prefs.setBool(displayOption.name, isOn);
});
notifyListeners();
}
}

View File

@ -0,0 +1,63 @@
import 'package:fiszki_projekt/components/flashcards_page/card_2.dart';
import 'package:fiszki_projekt/components/flashcards_page/left_right_buttons.dart';
import 'package:fiszki_projekt/components/flashcards_page/progress_bar.dart';
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../components/app/cutom_appbar.dart';
import '../components/flashcards_page/card_1.dart';
import '../configs/constants.dart';
class FlashcardsPage extends StatefulWidget {
const FlashcardsPage({super.key});
@override
State<FlashcardsPage> createState() => _FlashcardsPageState();
}
class _FlashcardsPageState extends State<FlashcardsPage> {
@override
//initState sie odpala przy początku każdej sesji fiszkowej
void initState() {
//gdy sesja startuje to wywyłujemy metodę runSlideCard1
//czy widgetsbinding nie można wyjebać???
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
final flashcardsNotifier =
Provider.of<FlashcardsNotifier>(context, listen: false);
flashcardsNotifier.runSlideCard1();
flashcardsNotifier.generateAllSelectedWords();
flashcardsNotifier.generateCurrentWord(context: context);
});
super.initState();
}
@override
Widget build(BuildContext context) {
return Consumer<FlashcardsNotifier>(
// no tu jak wysłyszy że jest zmiana tematu to robi update czy coś
builder: (_, notifier, __) => Scaffold(
// tutaj appbar jest CustomAppBar() - który zrobiłem, jest w pliku components/app/
appBar: const PreferredSize(
preferredSize: Size.fromHeight(constAppBarH),
child: CustomAppBar(),
),
//Card1() jest z pliku components/flashcards_page
body: IgnorePointer(
ignoring: notifier
.ignoreTouches, // ignorujemy dotykanie kard w trakcje animacji
child: const Stack(
children: [
Align(alignment: Alignment.topCenter, child: ProgressBar()),
Card2(),
Card1(),
Align(
alignment: Alignment.bottomCenter,
child: LeftRightButtons()),
],
),
)),
);
}
}

114
lib/pages/home_page.dart Normal file
View File

@ -0,0 +1,114 @@
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:fiszki_projekt/data/words.dart';
import 'package:fiszki_projekt/databases/database_manager.dart';
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:fiszki_projekt/notifiers/saved_cards_notifier.dart';
import 'package:fiszki_projekt/pages/saved_cards_page.dart';
import 'package:fiszki_projekt/pages/settings_page.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../components/home_page/topic_tile.dart';
class HomePage extends StatefulWidget {
const HomePage({super.key});
@override
State<HomePage> createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
final List<String> _topics = []; // lista zawierająca kategorie słówek
@override
void initState() {
for (var t in words) {
// wypełnienie listy kategorii kategoriami z words.dart
if (!_topics.contains(t.topic)) {
// aby nie powtarzać kategorii
_topics.add(t.topic);
}
_topics.sort(); // posortowanie kategorii alfabetycznie
}
_topics.insertAll(0, ['5 Losowych', '20 Losowych', 'Wszystko']);
super.initState();
}
@override
Widget build(BuildContext context) {
final screenSize =
MediaQuery.of(context).size; // pobiera rozmiary ekranu urządzenia
final paddingAroundScrollView = screenSize.width * 0.03;
return Scaffold(
appBar: AppBar(
toolbarHeight: screenSize.height * constHomePageAppbarHeigth,
title: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
GestureDetector(
onTap: () {
Provider.of<FlashcardsNotifier>(context, listen: false)
.setTopic(topic: 'Ustawienia');
Navigator.push(context,
MaterialPageRoute(builder: (context) => SettingsPage()));
},
child: SizedBox(
width: screenSize.width * constIconPadding,
child: const Icon(Icons.settings)),
),
const Text('Fiszki - strona główna'),
GestureDetector(
onTap: () {
_loadReviewPage(context);
},
child: SizedBox(
width: screenSize.width * constIconPadding,
child: const Icon(Icons.analytics)),
),
],
),
),
body: Padding(
padding: EdgeInsets.only(
top: paddingAroundScrollView,
left: paddingAroundScrollView,
right: paddingAroundScrollView),
child: CustomScrollView(
slivers: [
SliverGrid(
delegate: SliverChildBuilderDelegate(
// buduje te kafelki
childCount: _topics
.length, // lista kafelków ma mieć tyle kafelków ile jest tematów
(context, index) => TopicTile(
topic: _topics[index])), // TopicTile to mój widżet
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3,
crossAxisSpacing: 6,
mainAxisSpacing: 6,
)) // odpowiada za wygląd kafelków, 3 to liczba kolumn
],
),
));
}
void _loadReviewPage(BuildContext context) {
Provider.of<FlashcardsNotifier>(context, listen: false)
.setTopic(topic: 'Review');
DatabaseManager().selectWords().then((words) {
final reviewNotifier =
Provider.of<SavedCardsNotifier>(context, listen: false);
if (words.isEmpty) {
reviewNotifier.disableButtons(disable: true);
} else {
reviewNotifier.disableButtons(disable: false);
}
Navigator.push(
context, MaterialPageRoute(builder: (context) => ReviewPage()));
});
}
}

View File

@ -0,0 +1,161 @@
import 'package:fiszki_projekt/components/app/cutom_appbar.dart';
import 'package:fiszki_projekt/configs/constants.dart';
import 'package:fiszki_projekt/databases/database_manager.dart';
import 'package:fiszki_projekt/enums/language_type_enum.dart';
import 'package:fiszki_projekt/notifiers/flashcards_notifier.dart';
import 'package:fiszki_projekt/notifiers/saved_cards_notifier.dart';
import 'package:fiszki_projekt/pages/flashcards_page.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../components/saved_cards_page/top_button.dart';
import '../components/saved_cards_page/bottom_button.dart';
import '../components/saved_cards_page/flashcard_tile.dart';
import '../data/word.dart';
class ReviewPage extends StatefulWidget {
const ReviewPage({super.key});
@override
State<ReviewPage> createState() => _ReviewPageState();
}
class _ReviewPageState extends State<ReviewPage> {
final _listKey = GlobalKey<AnimatedListState>();
final _reviewWords = [];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: const PreferredSize(
preferredSize: Size.fromHeight(constAppBarH),
child: CustomAppBar(),
),
body: Column(
children: [
Expanded(
flex: 1,
child: Selector<SavedCardsNotifier, bool>(
selector: (_, review) => review.buttonsAreDisabled,
builder: (_, disable, __) => Row(
children: [
TopButton(
isDisabled: disable,
title: 'Nauka wszystkich',
onPressed: () {
final provider = Provider.of<FlashcardsNotifier>(context,
listen: false);
provider.selectedWords.clear();
DatabaseManager().selectWords().then((words) {
provider.selectedWords = words.toList();
Navigator.pushReplacement(
context,
MaterialPageRoute(
builder: (context) => FlashcardsPage()));
});
},
),
TopButton(
isDisabled: disable,
title: 'Usuń wszystko',
onPressed: () {
_clearAllWords();
},
),
],
),
),
),
Expanded(
flex: 10,
child: FutureBuilder(
future: DatabaseManager().selectWords(),
builder: (context, snapshot) {
if (snapshot.hasData) {
var sortlist = snapshot.data as List<Word>;
sortlist.sort((a, b) => a.polish.compareTo(b.polish));
WidgetsBinding.instance.addPostFrameCallback(((timeStamp) {
_insertWords(words: sortlist);
}));
return AnimatedList(
key: _listKey,
initialItemCount: _reviewWords.length,
itemBuilder: (context, index, animation) => WordTile(
word: _reviewWords[index],
animation: animation,
onPressed: () {
_removeWord(word: _reviewWords[index]);
},
),
);
} else {
//jeśli nie ma hasdata
return SizedBox();
}
},
),
),
Expanded(
flex: 1,
child: Selector<SavedCardsNotifier, bool>(
selector: (_, review) => review.buttonsAreDisabled,
builder: (_, disable, __) => Row(
children: [
BottomButton(
isDisabled: disable,
languageType: LanguageTypeEnum.polish,
),
BottomButton(
isDisabled: disable,
languageType: LanguageTypeEnum.german,
),
],
),
),
),
],
),
);
}
_insertWords({required List<Word> words}) {
for (int i = 0; i < words.length; i++) {
_listKey.currentState?.insertItem(i);
_reviewWords.insert(i, words[i]);
}
}
_removeWord({required Word word}) async {
var w = word;
_listKey.currentState?.removeItem(_reviewWords.indexOf(w),
(context, animation) => WordTile(word: w, animation: animation));
_reviewWords.remove(w);
await DatabaseManager().removeWord(word: w);
//jeśli usunę ostatnie słowo to wyłączam przyciski
if (_reviewWords.isEmpty) {
// ignore: use_build_context_synchronously
Provider.of<SavedCardsNotifier>(context, listen: false)
.disableButtons(disable: true);
}
}
_clearAllWords() {
for (int i = 0; i < _reviewWords.length; i++) {
_listKey.currentState?.removeItem(
0,
(context, animation) =>
WordTile(word: _reviewWords[i], animation: animation));
}
WidgetsBinding.instance.addPostFrameCallback((timeStamp) async {
_reviewWords.clear();
await DatabaseManager().removeAllWords();
//tu gdy usuwam wszystkie słowa na raz to guzki też wyłączam
// ignore: use_build_context_synchronously
Provider.of<SavedCardsNotifier>(context, listen: false)
.disableButtons(disable: true);
});
}
}

View File

@ -0,0 +1,60 @@
import 'package:fiszki_projekt/components/app/cutom_appbar.dart';
import 'package:fiszki_projekt/databases/database_manager.dart';
import 'package:fiszki_projekt/notifiers/settings_notifier.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../components/settings_page/settings_tile.dart';
import '../components/settings_page/switch_button.dart';
import '../configs/constants.dart';
import '../enums/settings_enum.dart';
class SettingsPage extends StatefulWidget {
const SettingsPage({super.key});
@override
State<SettingsPage> createState() => _SettingsPageState();
}
class _SettingsPageState extends State<SettingsPage> {
@override
Widget build(BuildContext context) {
return Consumer<SettingsNotifier>(
builder: (_, notifier, __) {
return Scaffold(
appBar: const PreferredSize(
preferredSize: Size.fromHeight(constAppBarH),
child: CustomAppBar(),
),
body: Stack(
children: [
const Column(children: [
SwitchButton(
displayOption: SettingsEnum.polishFirst,
text: 'Pokaż Polski najpierw',
),
SwitchButton(
displayOption: SettingsEnum.showAudio,
text: 'Pokaż dźwięk',
),
]),
Column(
mainAxisAlignment: MainAxisAlignment.end,
children: [
SettingsTile(
title: 'Usuń bazę danych',
icon: const Icon(Icons.delete),
callbackFunction: () async {
await DatabaseManager().removeDatabase();
debugPrint('RESET bazy danych NADUSZONY');
},
),
],
)
],
),
);
},
);
}
}

1
linux/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
flutter/ephemeral

139
linux/CMakeLists.txt Normal file
View File

@ -0,0 +1,139 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.10)
project(runner LANGUAGES CXX)
# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "fiszki_projekt")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.fiszki_projekt")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
cmake_policy(SET CMP0063 NEW)
# Load bundled libraries from the lib/ directory relative to the binary.
set(CMAKE_INSTALL_RPATH "$ORIGIN/lib")
# Root filesystem for cross-building.
if(FLUTTER_TARGET_PLATFORM_SYSROOT)
set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT})
set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT})
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
endif()
# Define build configuration options.
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE "Debug" CACHE
STRING "Flutter build mode" FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "Profile" "Release")
endif()
# Compilation settings that should be applied to most targets.
#
# Be cautious about adding new options here, as plugins use this function by
# default. In most cases, you should add new options to specific targets instead
# of modifying this function.
function(APPLY_STANDARD_SETTINGS TARGET)
target_compile_features(${TARGET} PUBLIC cxx_std_14)
target_compile_options(${TARGET} PRIVATE -Wall -Werror)
target_compile_options(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:-O3>")
target_compile_definitions(${TARGET} PRIVATE "$<$<NOT:$<CONFIG:Debug>>:NDEBUG>")
endfunction()
# Flutter library and tool build rules.
set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter")
add_subdirectory(${FLUTTER_MANAGED_DIR})
# System-level dependencies.
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}")
# Define the application target. To change its name, change BINARY_NAME above,
# not the value here, or `flutter run` will no longer work.
#
# Any new source files that you add to the application should be added here.
add_executable(${BINARY_NAME}
"main.cc"
"my_application.cc"
"${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
)
# Apply the standard set of build settings. This can be removed for applications
# that need different build settings.
apply_standard_settings(${BINARY_NAME})
# Add dependency libraries. Add any application-specific dependencies here.
target_link_libraries(${BINARY_NAME} PRIVATE flutter)
target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK)
# Run the Flutter tool portions of the build. This must not be removed.
add_dependencies(${BINARY_NAME} flutter_assemble)
# Only the install-generated bundle's copy of the executable will launch
# correctly, since the resources must in the right relative locations. To avoid
# people trying to run the unbundled copy, put it in a subdirectory instead of
# the default top-level location.
set_target_properties(${BINARY_NAME}
PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run"
)
# Generated plugin build rules, which manage building the plugins and adding
# them to the application.
include(flutter/generated_plugins.cmake)
# === Installation ===
# By default, "installing" just makes a relocatable bundle in the build
# directory.
set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle")
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
endif()
# Start with a clean build bundle directory every time.
install(CODE "
file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\")
" COMPONENT Runtime)
set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data")
set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib")
install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}"
COMPONENT Runtime)
install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
COMPONENT Runtime)
install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
foreach(bundled_library ${PLUGIN_BUNDLED_LIBRARIES})
install(FILES "${bundled_library}"
DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
endforeach(bundled_library)
# Fully re-copy the assets directory on each build to avoid having stale files
# from a previous install.
set(FLUTTER_ASSET_DIR_NAME "flutter_assets")
install(CODE "
file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\")
" COMPONENT Runtime)
install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}"
DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime)
# Install the AOT library on non-Debug builds only.
if(NOT CMAKE_BUILD_TYPE MATCHES "Debug")
install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
COMPONENT Runtime)
endif()

View File

@ -0,0 +1,88 @@
# This file controls Flutter-level build steps. It should not be edited.
cmake_minimum_required(VERSION 3.10)
set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral")
# Configuration provided via flutter tool.
include(${EPHEMERAL_DIR}/generated_config.cmake)
# TODO: Move the rest of this into files in ephemeral. See
# https://github.com/flutter/flutter/issues/57146.
# Serves the same purpose as list(TRANSFORM ... PREPEND ...),
# which isn't available in 3.10.
function(list_prepend LIST_NAME PREFIX)
set(NEW_LIST "")
foreach(element ${${LIST_NAME}})
list(APPEND NEW_LIST "${PREFIX}${element}")
endforeach(element)
set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE)
endfunction()
# === Flutter Library ===
# System-level dependencies.
find_package(PkgConfig REQUIRED)
pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0)
pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0)
pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0)
set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so")
# Published to parent scope for install step.
set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)
set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE)
set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE)
set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE)
list(APPEND FLUTTER_LIBRARY_HEADERS
"fl_basic_message_channel.h"
"fl_binary_codec.h"
"fl_binary_messenger.h"
"fl_dart_project.h"
"fl_engine.h"
"fl_json_message_codec.h"
"fl_json_method_codec.h"
"fl_message_codec.h"
"fl_method_call.h"
"fl_method_channel.h"
"fl_method_codec.h"
"fl_method_response.h"
"fl_plugin_registrar.h"
"fl_plugin_registry.h"
"fl_standard_message_codec.h"
"fl_standard_method_codec.h"
"fl_string_codec.h"
"fl_value.h"
"fl_view.h"
"flutter_linux.h"
)
list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/")
add_library(flutter INTERFACE)
target_include_directories(flutter INTERFACE
"${EPHEMERAL_DIR}"
)
target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}")
target_link_libraries(flutter INTERFACE
PkgConfig::GTK
PkgConfig::GLIB
PkgConfig::GIO
)
add_dependencies(flutter flutter_assemble)
# === Flutter tool backend ===
# _phony_ is a non-existent file to force this command to run every time,
# since currently there's no way to get a full input/output list from the
# flutter tool.
add_custom_command(
OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}
${CMAKE_CURRENT_BINARY_DIR}/_phony_
COMMAND ${CMAKE_COMMAND} -E env
${FLUTTER_TOOL_ENVIRONMENT}
"${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh"
${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE}
VERBATIM
)
add_custom_target(flutter_assemble DEPENDS
"${FLUTTER_LIBRARY}"
${FLUTTER_LIBRARY_HEADERS}
)

Some files were not shown because too many files have changed in this diff Show More