├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_getx_template │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ ├── Lato-Bold.ttf │ ├── Lato-Regular.ttf │ ├── Lobster-Regular.ttf │ ├── Raleway-Bold.ttf │ └── Raleway-Regular.ttf └── lottie │ ├── lottie_card.json │ └── lottie_splash.json ├── images ├── c01.jpg ├── c02.jpg ├── c03.jpg ├── c04.jpg ├── c05.jpg ├── c06.jpg ├── c07.jpg ├── c08.jpg ├── c09.jpg ├── c10.jpg ├── c11.jpg ├── c12.jpg ├── c13.jpg ├── c14.jpg ├── m00.jpg ├── m01.jpg ├── m02.jpg ├── m03.jpg ├── m04.jpg ├── m05.jpg ├── m06.jpg ├── m07.jpg ├── m08.jpg ├── m09.jpg ├── m10.jpg ├── m11.jpg ├── m12.jpg ├── m13.jpg ├── m14.jpg ├── m15.jpg ├── m16.jpg ├── m17.jpg ├── m18.jpg ├── m19.jpg ├── m20.jpg ├── m21.jpg ├── p01.jpg ├── p02.jpg ├── p03.jpg ├── p04.jpg ├── p05.jpg ├── p06.jpg ├── p07.jpg ├── p08.jpg ├── p09.jpg ├── p10.jpg ├── p11.jpg ├── p12.jpg ├── p13.jpg ├── p14.jpg ├── s01.jpg ├── s02.jpg ├── s03.jpg ├── s04.jpg ├── s05.jpg ├── s06.jpg ├── s07.jpg ├── s08.jpg ├── s09.jpg ├── s10.jpg ├── s11.jpg ├── s12.jpg ├── s13.jpg ├── s14.jpg ├── w01.jpg ├── w02.jpg ├── w03.jpg ├── w04.jpg ├── w05.jpg ├── w06.jpg ├── w07.jpg ├── w08.jpg ├── w09.jpg ├── w10.jpg ├── w11.jpg ├── w12.jpg ├── w13.jpg └── w14.jpg ├── integration_test ├── app_test.dart └── driver.dart ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── data │ └── tarot_json.dart ├── main.dart └── src │ ├── app.dart │ ├── lang │ ├── en_US.dart │ ├── translation_service.dart │ └── vi_VN.dart │ ├── pages │ ├── home │ │ ├── details_page.dart │ │ └── home_page.dart │ └── splash │ │ └── splash_page.dart │ ├── public │ ├── constant.dart │ └── styles.dart │ ├── routes │ ├── app_pages.dart │ └── app_routes.dart │ ├── shared │ └── logger │ │ └── logger_utils.dart │ └── theme │ ├── theme_service.dart │ └── themes.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── home.png ├── home2.png ├── solve.png └── splash.png ├── test └── widget_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png └── Icon-512.png ├── index.html └── manifest.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | 12 | # IntelliJ related 13 | *.iml 14 | *.ipr 15 | *.iws 16 | .idea/ 17 | 18 | # The .vscode folder contains launch configuration and tasks you configure in 19 | # VS Code which you may wish to be included in version control, so this line 20 | # is commented out by default. 21 | #.vscode/ 22 | 23 | # Flutter/Dart/Pub related 24 | **/doc/api/ 25 | **/ios/Flutter/.last_build_id 26 | .dart_tool/ 27 | .flutter-plugins 28 | .flutter-plugins-dependencies 29 | .packages 30 | .pub-cache/ 31 | .pub/ 32 | /build/ 33 | 34 | # Web related 35 | lib/generated_plugin_registrant.dart 36 | 37 | # Symbolication related 38 | app.*.symbols 39 | 40 | # Obfuscation related 41 | app.*.map.json 42 | 43 | # Android Studio will place build artifacts here 44 | /android/app/debug 45 | /android/app/profile 46 | /android/app/release 47 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: b7f6d9bcb2333bae29e55e98befdad3723a97f2b 8 | channel: master 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Dao Hong Vinh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Flutter Tarot Card 2 | 3 | ### Description: 4 | - This is mobile application fortune telling using Flutter for development. 5 | 6 | ### How I can run it? 7 | - :rocket: Clone this repository 8 | - :rocket: Run below code in terminal of project: 9 | ```terminal 10 | flutter pub get 11 | flutter run 12 | ``` 13 | 14 | ### Screenshots 15 | 16 |

17 | 18 | 19 | 20 | 21 |

22 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withReader('UTF-8') { reader -> 5 | localProperties.load(reader) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode') 15 | if (flutterVersionCode == null) { 16 | flutterVersionCode = '1' 17 | } 18 | 19 | def flutterVersionName = localProperties.getProperty('flutter.versionName') 20 | if (flutterVersionName == null) { 21 | flutterVersionName = '1.0' 22 | } 23 | 24 | apply plugin: 'com.android.application' 25 | apply plugin: 'kotlin-android' 26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 27 | 28 | android { 29 | compileSdkVersion 30 30 | 31 | sourceSets { 32 | main.java.srcDirs += 'src/main/kotlin' 33 | } 34 | 35 | defaultConfig { 36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 37 | applicationId "com.example.flutter_getx_template" 38 | minSdkVersion 16 39 | targetSdkVersion 30 40 | versionCode flutterVersionCode.toInteger() 41 | versionName flutterVersionName 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 59 | } 60 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 8 | 15 | 19 | 23 | 28 | 32 | 33 | 34 | 35 | 36 | 37 | 39 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_getx_template/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.flutter_getx_template 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.3.50' 3 | repositories { 4 | google() 5 | jcenter() 6 | } 7 | 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:4.1.0' 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 | } 12 | } 13 | 14 | allprojects { 15 | repositories { 16 | google() 17 | jcenter() 18 | } 19 | } 20 | 21 | rootProject.buildDir = '../build' 22 | subprojects { 23 | project.buildDir = "${rootProject.buildDir}/${project.name}" 24 | } 25 | subprojects { 26 | project.evaluationDependsOn(':app') 27 | } 28 | 29 | task clean(type: Delete) { 30 | delete rootProject.buildDir 31 | } 32 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.useAndroidX=true 3 | android.enableJetifier=true 4 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip 7 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") 4 | def properties = new Properties() 5 | 6 | assert localPropertiesFile.exists() 7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } 8 | 9 | def flutterSdkPath = properties.getProperty("flutter.sdk") 10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" 11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" 12 | -------------------------------------------------------------------------------- /assets/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/assets/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lobster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/assets/fonts/Lobster-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/assets/fonts/Raleway-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/assets/fonts/Raleway-Regular.ttf -------------------------------------------------------------------------------- /images/c01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c01.jpg -------------------------------------------------------------------------------- /images/c02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c02.jpg -------------------------------------------------------------------------------- /images/c03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c03.jpg -------------------------------------------------------------------------------- /images/c04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c04.jpg -------------------------------------------------------------------------------- /images/c05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c05.jpg -------------------------------------------------------------------------------- /images/c06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c06.jpg -------------------------------------------------------------------------------- /images/c07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c07.jpg -------------------------------------------------------------------------------- /images/c08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c08.jpg -------------------------------------------------------------------------------- /images/c09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c09.jpg -------------------------------------------------------------------------------- /images/c10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c10.jpg -------------------------------------------------------------------------------- /images/c11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c11.jpg -------------------------------------------------------------------------------- /images/c12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c12.jpg -------------------------------------------------------------------------------- /images/c13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c13.jpg -------------------------------------------------------------------------------- /images/c14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/c14.jpg -------------------------------------------------------------------------------- /images/m00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m00.jpg -------------------------------------------------------------------------------- /images/m01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m01.jpg -------------------------------------------------------------------------------- /images/m02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m02.jpg -------------------------------------------------------------------------------- /images/m03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m03.jpg -------------------------------------------------------------------------------- /images/m04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m04.jpg -------------------------------------------------------------------------------- /images/m05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m05.jpg -------------------------------------------------------------------------------- /images/m06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m06.jpg -------------------------------------------------------------------------------- /images/m07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m07.jpg -------------------------------------------------------------------------------- /images/m08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m08.jpg -------------------------------------------------------------------------------- /images/m09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m09.jpg -------------------------------------------------------------------------------- /images/m10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m10.jpg -------------------------------------------------------------------------------- /images/m11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m11.jpg -------------------------------------------------------------------------------- /images/m12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m12.jpg -------------------------------------------------------------------------------- /images/m13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m13.jpg -------------------------------------------------------------------------------- /images/m14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m14.jpg -------------------------------------------------------------------------------- /images/m15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m15.jpg -------------------------------------------------------------------------------- /images/m16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m16.jpg -------------------------------------------------------------------------------- /images/m17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m17.jpg -------------------------------------------------------------------------------- /images/m18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m18.jpg -------------------------------------------------------------------------------- /images/m19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m19.jpg -------------------------------------------------------------------------------- /images/m20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m20.jpg -------------------------------------------------------------------------------- /images/m21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/m21.jpg -------------------------------------------------------------------------------- /images/p01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p01.jpg -------------------------------------------------------------------------------- /images/p02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p02.jpg -------------------------------------------------------------------------------- /images/p03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p03.jpg -------------------------------------------------------------------------------- /images/p04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p04.jpg -------------------------------------------------------------------------------- /images/p05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p05.jpg -------------------------------------------------------------------------------- /images/p06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p06.jpg -------------------------------------------------------------------------------- /images/p07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p07.jpg -------------------------------------------------------------------------------- /images/p08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p08.jpg -------------------------------------------------------------------------------- /images/p09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p09.jpg -------------------------------------------------------------------------------- /images/p10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p10.jpg -------------------------------------------------------------------------------- /images/p11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p11.jpg -------------------------------------------------------------------------------- /images/p12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p12.jpg -------------------------------------------------------------------------------- /images/p13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p13.jpg -------------------------------------------------------------------------------- /images/p14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/p14.jpg -------------------------------------------------------------------------------- /images/s01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s01.jpg -------------------------------------------------------------------------------- /images/s02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s02.jpg -------------------------------------------------------------------------------- /images/s03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s03.jpg -------------------------------------------------------------------------------- /images/s04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s04.jpg -------------------------------------------------------------------------------- /images/s05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s05.jpg -------------------------------------------------------------------------------- /images/s06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s06.jpg -------------------------------------------------------------------------------- /images/s07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s07.jpg -------------------------------------------------------------------------------- /images/s08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s08.jpg -------------------------------------------------------------------------------- /images/s09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s09.jpg -------------------------------------------------------------------------------- /images/s10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s10.jpg -------------------------------------------------------------------------------- /images/s11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s11.jpg -------------------------------------------------------------------------------- /images/s12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s12.jpg -------------------------------------------------------------------------------- /images/s13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s13.jpg -------------------------------------------------------------------------------- /images/s14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/s14.jpg -------------------------------------------------------------------------------- /images/w01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w01.jpg -------------------------------------------------------------------------------- /images/w02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w02.jpg -------------------------------------------------------------------------------- /images/w03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w03.jpg -------------------------------------------------------------------------------- /images/w04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w04.jpg -------------------------------------------------------------------------------- /images/w05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w05.jpg -------------------------------------------------------------------------------- /images/w06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w06.jpg -------------------------------------------------------------------------------- /images/w07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w07.jpg -------------------------------------------------------------------------------- /images/w08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w08.jpg -------------------------------------------------------------------------------- /images/w09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w09.jpg -------------------------------------------------------------------------------- /images/w10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w10.jpg -------------------------------------------------------------------------------- /images/w11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w11.jpg -------------------------------------------------------------------------------- /images/w12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w12.jpg -------------------------------------------------------------------------------- /images/w13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w13.jpg -------------------------------------------------------------------------------- /images/w14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/images/w14.jpg -------------------------------------------------------------------------------- /integration_test/app_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter integration test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_test/flutter_test.dart'; 10 | import 'package:integration_test/integration_test.dart'; 11 | 12 | import 'package:flutter_getx_template/main.dart' as app; 13 | 14 | void main() => run(_testMain); 15 | 16 | void _testMain() { 17 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 18 | // Build our app and trigger a frame. 19 | app.main(); 20 | 21 | // Trigger a frame. 22 | await tester.pumpAndSettle(); 23 | 24 | // Verify that our counter starts at 0. 25 | expect(find.text('0'), findsOneWidget); 26 | expect(find.text('1'), findsNothing); 27 | 28 | // Tap the '+' icon and trigger a frame. 29 | await tester.tap(find.byIcon(Icons.add)); 30 | await tester.pump(); 31 | 32 | // Verify that our counter has incremented. 33 | expect(find.text('0'), findsNothing); 34 | expect(find.text('1'), findsOneWidget); 35 | }); 36 | } 37 | -------------------------------------------------------------------------------- /integration_test/driver.dart: -------------------------------------------------------------------------------- 1 | // This file is provided as a convenience for running integration tests via the 2 | // flutter drive command. 3 | // 4 | // flutter drive --driver integration_test/driver.dart --target integration_test/app_test.dart 5 | 6 | import 'package:integration_test/integration_test_driver.dart'; 7 | 8 | Future main() => integrationDriver(); 9 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.mode1v3 2 | *.mode2v3 3 | *.moved-aside 4 | *.pbxuser 5 | *.perspectivev3 6 | **/*sync/ 7 | .sconsign.dblite 8 | .tags* 9 | **/.vagrant/ 10 | **/DerivedData/ 11 | Icon? 12 | **/Pods/ 13 | **/.symlinks/ 14 | profile 15 | xcuserdata 16 | **/.generated/ 17 | Flutter/App.framework 18 | Flutter/Flutter.framework 19 | Flutter/Flutter.podspec 20 | Flutter/Generated.xcconfig 21 | Flutter/app.flx 22 | Flutter/app.zip 23 | Flutter/flutter_assets/ 24 | Flutter/flutter_export_environment.sh 25 | ServiceDefinitions.json 26 | Runner/GeneratedPluginRegistrant.* 27 | 28 | # Exceptions to above rules. 29 | !default.mode1v3 30 | !default.mode2v3 31 | !default.pbxuser 32 | !default.perspectivev3 33 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 8.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true' 6 | 7 | project 'Runner', { 8 | 'Debug' => :debug, 9 | 'Profile' => :release, 10 | 'Release' => :release, 11 | } 12 | 13 | def flutter_root 14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) 15 | unless File.exist?(generated_xcode_build_settings_path) 16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" 17 | end 18 | 19 | File.foreach(generated_xcode_build_settings_path) do |line| 20 | matches = line.match(/FLUTTER_ROOT\=(.*)/) 21 | return matches[1].strip if matches 22 | end 23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" 24 | end 25 | 26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) 27 | 28 | flutter_ios_podfile_setup 29 | 30 | target 'Runner' do 31 | use_frameworks! 32 | use_modular_headers! 33 | 34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) 35 | end 36 | 37 | post_install do |installer| 38 | installer.pods_project.targets.each do |target| 39 | flutter_additional_ios_build_settings(target) 40 | end 41 | end 42 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Flutter (1.0.0) 3 | - integration_test (0.0.1): 4 | - Flutter 5 | - path_provider (0.0.1): 6 | - Flutter 7 | 8 | DEPENDENCIES: 9 | - Flutter (from `Flutter`) 10 | - integration_test (from `.symlinks/plugins/integration_test/ios`) 11 | - path_provider (from `.symlinks/plugins/path_provider/ios`) 12 | 13 | EXTERNAL SOURCES: 14 | Flutter: 15 | :path: Flutter 16 | integration_test: 17 | :path: ".symlinks/plugins/integration_test/ios" 18 | path_provider: 19 | :path: ".symlinks/plugins/path_provider/ios" 20 | 21 | SPEC CHECKSUMS: 22 | Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c 23 | integration_test: 5ed24a436eb7ec17b6a13046e9bf7ca4a404e59e 24 | path_provider: abfe2b5c733d04e238b0d8691db0cfd63a27a93c 25 | 26 | PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c 27 | 28 | COCOAPODS: 1.10.1 29 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0433D889CD2CFF7EFF1E0BD2 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8EF73C5B5820A4613937247 /* Pods_Runner.framework */; }; 11 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 12 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 13 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 14 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 15 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 16 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXCopyFilesBuildPhase section */ 20 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 21 | isa = PBXCopyFilesBuildPhase; 22 | buildActionMask = 2147483647; 23 | dstPath = ""; 24 | dstSubfolderSpec = 10; 25 | files = ( 26 | ); 27 | name = "Embed Frameworks"; 28 | runOnlyForDeploymentPostprocessing = 0; 29 | }; 30 | /* End PBXCopyFilesBuildPhase section */ 31 | 32 | /* Begin PBXFileReference section */ 33 | 0D75E86EF1FF0406CADEAFCA /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 34 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 35 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 36 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 37 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 38 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 39 | 78769DC6C719F96EE15BC990 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; 40 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 41 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 42 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 43 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 45 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 46 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 47 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 48 | A8EF73C5B5820A4613937247 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | E5EE97A855A726AAAE1AFF9E /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 0433D889CD2CFF7EFF1E0BD2 /* Pods_Runner.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | /* End PBXFrameworksBuildPhase section */ 62 | 63 | /* Begin PBXGroup section */ 64 | 9740EEB11CF90186004384FC /* Flutter */ = { 65 | isa = PBXGroup; 66 | children = ( 67 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 68 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 69 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 70 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 71 | ); 72 | name = Flutter; 73 | sourceTree = ""; 74 | }; 75 | 97C146E51CF9000F007C117D = { 76 | isa = PBXGroup; 77 | children = ( 78 | 9740EEB11CF90186004384FC /* Flutter */, 79 | 97C146F01CF9000F007C117D /* Runner */, 80 | 97C146EF1CF9000F007C117D /* Products */, 81 | DB9FAED1A51CDA805D37039D /* Pods */, 82 | B8F9A8ACFD2E109C6DFBAEAB /* Frameworks */, 83 | ); 84 | sourceTree = ""; 85 | }; 86 | 97C146EF1CF9000F007C117D /* Products */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146EE1CF9000F007C117D /* Runner.app */, 90 | ); 91 | name = Products; 92 | sourceTree = ""; 93 | }; 94 | 97C146F01CF9000F007C117D /* Runner */ = { 95 | isa = PBXGroup; 96 | children = ( 97 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 98 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 99 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 100 | 97C147021CF9000F007C117D /* Info.plist */, 101 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 102 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 103 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 104 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 105 | ); 106 | path = Runner; 107 | sourceTree = ""; 108 | }; 109 | B8F9A8ACFD2E109C6DFBAEAB /* Frameworks */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | A8EF73C5B5820A4613937247 /* Pods_Runner.framework */, 113 | ); 114 | name = Frameworks; 115 | sourceTree = ""; 116 | }; 117 | DB9FAED1A51CDA805D37039D /* Pods */ = { 118 | isa = PBXGroup; 119 | children = ( 120 | 0D75E86EF1FF0406CADEAFCA /* Pods-Runner.debug.xcconfig */, 121 | 78769DC6C719F96EE15BC990 /* Pods-Runner.release.xcconfig */, 122 | E5EE97A855A726AAAE1AFF9E /* Pods-Runner.profile.xcconfig */, 123 | ); 124 | name = Pods; 125 | path = Pods; 126 | sourceTree = ""; 127 | }; 128 | /* End PBXGroup section */ 129 | 130 | /* Begin PBXNativeTarget section */ 131 | 97C146ED1CF9000F007C117D /* Runner */ = { 132 | isa = PBXNativeTarget; 133 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 134 | buildPhases = ( 135 | 3E73904D974D12C351244305 /* [CP] Check Pods Manifest.lock */, 136 | 9740EEB61CF901F6004384FC /* Run Script */, 137 | 97C146EA1CF9000F007C117D /* Sources */, 138 | 97C146EB1CF9000F007C117D /* Frameworks */, 139 | 97C146EC1CF9000F007C117D /* Resources */, 140 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 141 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 142 | 9BCA38C10E33F3A685EC4E16 /* [CP] Embed Pods Frameworks */, 143 | ); 144 | buildRules = ( 145 | ); 146 | dependencies = ( 147 | ); 148 | name = Runner; 149 | productName = Runner; 150 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 151 | productType = "com.apple.product-type.application"; 152 | }; 153 | /* End PBXNativeTarget section */ 154 | 155 | /* Begin PBXProject section */ 156 | 97C146E61CF9000F007C117D /* Project object */ = { 157 | isa = PBXProject; 158 | attributes = { 159 | LastUpgradeCheck = 1020; 160 | ORGANIZATIONNAME = ""; 161 | TargetAttributes = { 162 | 97C146ED1CF9000F007C117D = { 163 | CreatedOnToolsVersion = 7.3.1; 164 | LastSwiftMigration = 1100; 165 | }; 166 | }; 167 | }; 168 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 169 | compatibilityVersion = "Xcode 9.3"; 170 | developmentRegion = en; 171 | hasScannedForEncodings = 0; 172 | knownRegions = ( 173 | en, 174 | Base, 175 | ); 176 | mainGroup = 97C146E51CF9000F007C117D; 177 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 178 | projectDirPath = ""; 179 | projectRoot = ""; 180 | targets = ( 181 | 97C146ED1CF9000F007C117D /* Runner */, 182 | ); 183 | }; 184 | /* End PBXProject section */ 185 | 186 | /* Begin PBXResourcesBuildPhase section */ 187 | 97C146EC1CF9000F007C117D /* Resources */ = { 188 | isa = PBXResourcesBuildPhase; 189 | buildActionMask = 2147483647; 190 | files = ( 191 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 192 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 193 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 194 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | /* End PBXResourcesBuildPhase section */ 199 | 200 | /* Begin PBXShellScriptBuildPhase section */ 201 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 202 | isa = PBXShellScriptBuildPhase; 203 | buildActionMask = 2147483647; 204 | files = ( 205 | ); 206 | inputPaths = ( 207 | ); 208 | name = "Thin Binary"; 209 | outputPaths = ( 210 | ); 211 | runOnlyForDeploymentPostprocessing = 0; 212 | shellPath = /bin/sh; 213 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 214 | }; 215 | 3E73904D974D12C351244305 /* [CP] Check Pods Manifest.lock */ = { 216 | isa = PBXShellScriptBuildPhase; 217 | buildActionMask = 2147483647; 218 | files = ( 219 | ); 220 | inputFileListPaths = ( 221 | ); 222 | inputPaths = ( 223 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 224 | "${PODS_ROOT}/Manifest.lock", 225 | ); 226 | name = "[CP] Check Pods Manifest.lock"; 227 | outputFileListPaths = ( 228 | ); 229 | outputPaths = ( 230 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 231 | ); 232 | runOnlyForDeploymentPostprocessing = 0; 233 | shellPath = /bin/sh; 234 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 235 | showEnvVarsInLog = 0; 236 | }; 237 | 9740EEB61CF901F6004384FC /* Run Script */ = { 238 | isa = PBXShellScriptBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | ); 242 | inputPaths = ( 243 | ); 244 | name = "Run Script"; 245 | outputPaths = ( 246 | ); 247 | runOnlyForDeploymentPostprocessing = 0; 248 | shellPath = /bin/sh; 249 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 250 | }; 251 | 9BCA38C10E33F3A685EC4E16 /* [CP] Embed Pods Frameworks */ = { 252 | isa = PBXShellScriptBuildPhase; 253 | buildActionMask = 2147483647; 254 | files = ( 255 | ); 256 | inputFileListPaths = ( 257 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", 258 | ); 259 | name = "[CP] Embed Pods Frameworks"; 260 | outputFileListPaths = ( 261 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | shellPath = /bin/sh; 265 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 266 | showEnvVarsInLog = 0; 267 | }; 268 | /* End PBXShellScriptBuildPhase section */ 269 | 270 | /* Begin PBXSourcesBuildPhase section */ 271 | 97C146EA1CF9000F007C117D /* Sources */ = { 272 | isa = PBXSourcesBuildPhase; 273 | buildActionMask = 2147483647; 274 | files = ( 275 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 276 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | }; 280 | /* End PBXSourcesBuildPhase section */ 281 | 282 | /* Begin PBXVariantGroup section */ 283 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 284 | isa = PBXVariantGroup; 285 | children = ( 286 | 97C146FB1CF9000F007C117D /* Base */, 287 | ); 288 | name = Main.storyboard; 289 | sourceTree = ""; 290 | }; 291 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 292 | isa = PBXVariantGroup; 293 | children = ( 294 | 97C147001CF9000F007C117D /* Base */, 295 | ); 296 | name = LaunchScreen.storyboard; 297 | sourceTree = ""; 298 | }; 299 | /* End PBXVariantGroup section */ 300 | 301 | /* Begin XCBuildConfiguration section */ 302 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 303 | isa = XCBuildConfiguration; 304 | buildSettings = { 305 | ALWAYS_SEARCH_USER_PATHS = NO; 306 | CLANG_ANALYZER_NONNULL = YES; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 312 | CLANG_WARN_BOOL_CONVERSION = YES; 313 | CLANG_WARN_COMMA = YES; 314 | CLANG_WARN_CONSTANT_CONVERSION = YES; 315 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 316 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 317 | CLANG_WARN_EMPTY_BODY = YES; 318 | CLANG_WARN_ENUM_CONVERSION = YES; 319 | CLANG_WARN_INFINITE_RECURSION = YES; 320 | CLANG_WARN_INT_CONVERSION = YES; 321 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 322 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 323 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 324 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 325 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 326 | CLANG_WARN_STRICT_PROTOTYPES = YES; 327 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 328 | CLANG_WARN_UNREACHABLE_CODE = YES; 329 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 330 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 331 | COPY_PHASE_STRIP = NO; 332 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 333 | ENABLE_NS_ASSERTIONS = NO; 334 | ENABLE_STRICT_OBJC_MSGSEND = YES; 335 | GCC_C_LANGUAGE_STANDARD = gnu99; 336 | GCC_NO_COMMON_BLOCKS = YES; 337 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 338 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 339 | GCC_WARN_UNDECLARED_SELECTOR = YES; 340 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 341 | GCC_WARN_UNUSED_FUNCTION = YES; 342 | GCC_WARN_UNUSED_VARIABLE = YES; 343 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 344 | MTL_ENABLE_DEBUG_INFO = NO; 345 | SDKROOT = iphoneos; 346 | SUPPORTED_PLATFORMS = iphoneos; 347 | TARGETED_DEVICE_FAMILY = "1,2"; 348 | VALIDATE_PRODUCT = YES; 349 | }; 350 | name = Profile; 351 | }; 352 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 353 | isa = XCBuildConfiguration; 354 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 355 | buildSettings = { 356 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 357 | CLANG_ENABLE_MODULES = YES; 358 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 359 | ENABLE_BITCODE = NO; 360 | INFOPLIST_FILE = Runner/Info.plist; 361 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 362 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterGetxTemplate; 363 | PRODUCT_NAME = "$(TARGET_NAME)"; 364 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 365 | SWIFT_VERSION = 5.0; 366 | VERSIONING_SYSTEM = "apple-generic"; 367 | }; 368 | name = Profile; 369 | }; 370 | 97C147031CF9000F007C117D /* Debug */ = { 371 | isa = XCBuildConfiguration; 372 | buildSettings = { 373 | ALWAYS_SEARCH_USER_PATHS = NO; 374 | CLANG_ANALYZER_NONNULL = YES; 375 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 376 | CLANG_CXX_LIBRARY = "libc++"; 377 | CLANG_ENABLE_MODULES = YES; 378 | CLANG_ENABLE_OBJC_ARC = YES; 379 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 380 | CLANG_WARN_BOOL_CONVERSION = YES; 381 | CLANG_WARN_COMMA = YES; 382 | CLANG_WARN_CONSTANT_CONVERSION = YES; 383 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 384 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 385 | CLANG_WARN_EMPTY_BODY = YES; 386 | CLANG_WARN_ENUM_CONVERSION = YES; 387 | CLANG_WARN_INFINITE_RECURSION = YES; 388 | CLANG_WARN_INT_CONVERSION = YES; 389 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 390 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 391 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 392 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 393 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 394 | CLANG_WARN_STRICT_PROTOTYPES = YES; 395 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 396 | CLANG_WARN_UNREACHABLE_CODE = YES; 397 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 398 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 399 | COPY_PHASE_STRIP = NO; 400 | DEBUG_INFORMATION_FORMAT = dwarf; 401 | ENABLE_STRICT_OBJC_MSGSEND = YES; 402 | ENABLE_TESTABILITY = YES; 403 | GCC_C_LANGUAGE_STANDARD = gnu99; 404 | GCC_DYNAMIC_NO_PIC = NO; 405 | GCC_NO_COMMON_BLOCKS = YES; 406 | GCC_OPTIMIZATION_LEVEL = 0; 407 | GCC_PREPROCESSOR_DEFINITIONS = ( 408 | "DEBUG=1", 409 | "$(inherited)", 410 | ); 411 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 412 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 413 | GCC_WARN_UNDECLARED_SELECTOR = YES; 414 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 415 | GCC_WARN_UNUSED_FUNCTION = YES; 416 | GCC_WARN_UNUSED_VARIABLE = YES; 417 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 418 | MTL_ENABLE_DEBUG_INFO = YES; 419 | ONLY_ACTIVE_ARCH = YES; 420 | SDKROOT = iphoneos; 421 | TARGETED_DEVICE_FAMILY = "1,2"; 422 | }; 423 | name = Debug; 424 | }; 425 | 97C147041CF9000F007C117D /* Release */ = { 426 | isa = XCBuildConfiguration; 427 | buildSettings = { 428 | ALWAYS_SEARCH_USER_PATHS = NO; 429 | CLANG_ANALYZER_NONNULL = YES; 430 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 431 | CLANG_CXX_LIBRARY = "libc++"; 432 | CLANG_ENABLE_MODULES = YES; 433 | CLANG_ENABLE_OBJC_ARC = YES; 434 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_COMMA = YES; 437 | CLANG_WARN_CONSTANT_CONVERSION = YES; 438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 449 | CLANG_WARN_STRICT_PROTOTYPES = YES; 450 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 451 | CLANG_WARN_UNREACHABLE_CODE = YES; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 456 | ENABLE_NS_ASSERTIONS = NO; 457 | ENABLE_STRICT_OBJC_MSGSEND = YES; 458 | GCC_C_LANGUAGE_STANDARD = gnu99; 459 | GCC_NO_COMMON_BLOCKS = YES; 460 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 461 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 462 | GCC_WARN_UNDECLARED_SELECTOR = YES; 463 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 464 | GCC_WARN_UNUSED_FUNCTION = YES; 465 | GCC_WARN_UNUSED_VARIABLE = YES; 466 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 467 | MTL_ENABLE_DEBUG_INFO = NO; 468 | SDKROOT = iphoneos; 469 | SUPPORTED_PLATFORMS = iphoneos; 470 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 471 | TARGETED_DEVICE_FAMILY = "1,2"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 97C147061CF9000F007C117D /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | CLANG_ENABLE_MODULES = YES; 482 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 483 | ENABLE_BITCODE = NO; 484 | INFOPLIST_FILE = Runner/Info.plist; 485 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 486 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterGetxTemplate; 487 | PRODUCT_NAME = "$(TARGET_NAME)"; 488 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 489 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 490 | SWIFT_VERSION = 5.0; 491 | VERSIONING_SYSTEM = "apple-generic"; 492 | }; 493 | name = Debug; 494 | }; 495 | 97C147071CF9000F007C117D /* Release */ = { 496 | isa = XCBuildConfiguration; 497 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 498 | buildSettings = { 499 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 500 | CLANG_ENABLE_MODULES = YES; 501 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 502 | ENABLE_BITCODE = NO; 503 | INFOPLIST_FILE = Runner/Info.plist; 504 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 505 | PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterGetxTemplate; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 508 | SWIFT_VERSION = 5.0; 509 | VERSIONING_SYSTEM = "apple-generic"; 510 | }; 511 | name = Release; 512 | }; 513 | /* End XCBuildConfiguration section */ 514 | 515 | /* Begin XCConfigurationList section */ 516 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 517 | isa = XCConfigurationList; 518 | buildConfigurations = ( 519 | 97C147031CF9000F007C117D /* Debug */, 520 | 97C147041CF9000F007C117D /* Release */, 521 | 249021D3217E4FDB00AE95B9 /* Profile */, 522 | ); 523 | defaultConfigurationIsVisible = 0; 524 | defaultConfigurationName = Release; 525 | }; 526 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 527 | isa = XCConfigurationList; 528 | buildConfigurations = ( 529 | 97C147061CF9000F007C117D /* Debug */, 530 | 97C147071CF9000F007C117D /* Release */, 531 | 249021D4217E4FDB00AE95B9 /* Profile */, 532 | ); 533 | defaultConfigurationIsVisible = 0; 534 | defaultConfigurationName = Release; 535 | }; 536 | /* End XCConfigurationList section */ 537 | }; 538 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 539 | } 540 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | }, 111 | { 112 | "size" : "1024x1024", 113 | "idiom" : "ios-marketing", 114 | "filename" : "Icon-App-1024x1024@1x.png", 115 | "scale" : "1x" 116 | } 117 | ], 118 | "info" : { 119 | "version" : 1, 120 | "author" : "xcode" 121 | } 122 | } 123 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | 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. -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | flutter_getx_template 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | $(FLUTTER_BUILD_NAME) 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UISupportedInterfaceOrientations 30 | 31 | UIInterfaceOrientationPortrait 32 | UIInterfaceOrientationLandscapeLeft 33 | UIInterfaceOrientationLandscapeRight 34 | 35 | UISupportedInterfaceOrientations~ipad 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationPortraitUpsideDown 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UIViewControllerBasedStatusBarAppearance 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_getx_template/src/lang/translation_service.dart'; 3 | import 'package:flutter_getx_template/src/routes/app_pages.dart'; 4 | import 'package:flutter_getx_template/src/shared/logger/logger_utils.dart'; 5 | import 'package:flutter_getx_template/src/theme/theme_service.dart'; 6 | import 'package:flutter_getx_template/src/theme/themes.dart'; 7 | import 'package:get/get.dart'; 8 | import 'package:get_storage/get_storage.dart'; 9 | 10 | void main() async { 11 | await GetStorage.init(); 12 | runApp(GetMaterialApp( 13 | debugShowCheckedModeBanner: false, 14 | enableLog: true, 15 | logWriterCallback: Logger.write, 16 | initialRoute: AppPages.INITIAL, 17 | getPages: AppPages.routes, 18 | locale: TranslationService.locale, 19 | fallbackLocale: TranslationService.fallbackLocale, 20 | translations: TranslationService(), 21 | theme: Themes().lightTheme, 22 | darkTheme: Themes().darkTheme, 23 | themeMode: ThemeService().getThemeMode(), 24 | )); 25 | } 26 | -------------------------------------------------------------------------------- /lib/src/app.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:flutter/services.dart'; 4 | import 'package:flutter_getx_template/src/pages/home/home_page.dart'; 5 | import 'package:flutter_getx_template/src/pages/splash/splash_page.dart'; 6 | import 'pages/home/home_page.dart'; 7 | import 'package:get/get.dart'; 8 | 9 | class App extends StatefulWidget { 10 | static bool firstCome = true; 11 | static String token; 12 | 13 | @override 14 | State createState() => _AppState(); 15 | } 16 | 17 | class _AppState extends State with WidgetsBindingObserver { 18 | Timer _timmerInstance; 19 | int _countDown = 3; 20 | String points = '.'; 21 | 22 | void startTimmer() { 23 | var oneSec = Duration(seconds: 1); 24 | _timmerInstance = Timer.periodic( 25 | oneSec, 26 | (Timer timer) => setState( 27 | () { 28 | if (_countDown <= 0) { 29 | _timmerInstance.cancel(); 30 | App.firstCome = false; 31 | } else { 32 | _countDown--; 33 | points += '.'; 34 | } 35 | }, 36 | ), 37 | ); 38 | } 39 | 40 | @override 41 | void initState() { 42 | SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle( 43 | statusBarColor: Colors.transparent, 44 | statusBarBrightness: 45 | GetPlatform.isAndroid ? Brightness.light : Brightness.dark, 46 | statusBarIconBrightness: 47 | GetPlatform.isAndroid ? Brightness.light : Brightness.dark, 48 | )); 49 | WidgetsBinding.instance.addObserver(this); 50 | SystemChrome.setPreferredOrientations([ 51 | DeviceOrientation.portraitDown, 52 | DeviceOrientation.portraitUp, 53 | ]); 54 | super.initState(); 55 | startTimmer(); 56 | } 57 | 58 | @override 59 | Widget build(BuildContext context) { 60 | return _countDown != 0 && App.firstCome 61 | ? SplashPage(points: points) 62 | : HomePage(); 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /lib/src/lang/en_US.dart: -------------------------------------------------------------------------------- 1 | const Map en_US = { 2 | 'helloWord': 'Hello World', 3 | 'today': 'Today is', 4 | 'overview': 'Overview', 5 | 'work': 'Work', 6 | 'love': 'Love', 7 | 'finance': 'Finance', 8 | 'solveCards': 'Solve Cards', 9 | }; 10 | -------------------------------------------------------------------------------- /lib/src/lang/translation_service.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get/get.dart'; 3 | 4 | import 'en_US.dart'; 5 | import 'vi_VN.dart'; 6 | 7 | class TranslationService extends Translations { 8 | static final locale = Locale('vi', 'VN'); 9 | static final fallbackLocale = Locale('vi', 'VN'); 10 | @override 11 | Map> get keys => { 12 | 'en_US': en_US, 13 | 'vi_VN': vi_VN, 14 | }; 15 | } 16 | -------------------------------------------------------------------------------- /lib/src/lang/vi_VN.dart: -------------------------------------------------------------------------------- 1 | const Map vi_VN = { 2 | 'today': 'Hôm nay là', 3 | 'overview': 'Tổng quan', 4 | 'work': 'Công việc', 5 | 'love': 'Tình yêu', 6 | 'finance': 'Tài chính', 7 | 'solveCards': 'Giải bài', 8 | }; 9 | -------------------------------------------------------------------------------- /lib/src/pages/home/details_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_getx_template/src/public/constant.dart'; 3 | import 'package:flutter_getx_template/src/public/styles.dart'; 4 | import 'package:get/get.dart'; 5 | import 'package:translator/translator.dart'; 6 | 7 | class DetailsPage extends StatefulWidget { 8 | final results; 9 | DetailsPage({this.results}); 10 | @override 11 | State createState() => _DetailsPageState(); 12 | } 13 | 14 | class _DetailsPageState extends State { 15 | final translator = GoogleTranslator(); 16 | 17 | var value1; 18 | var value2; 19 | var value3; 20 | var value4; 21 | bool loading = true; 22 | 23 | void initContent() async { 24 | value1 = await translator.translate( 25 | widget.results[0]['meanings']['light'].join('\n\n'), 26 | to: 'vi', 27 | ); 28 | value2 = await translator.translate( 29 | widget.results[1]['meanings']['light'].join('\n\n'), 30 | to: 'vi', 31 | ); 32 | value3 = await translator.translate( 33 | widget.results[2]['meanings']['light'].join('\n\n'), 34 | to: 'vi', 35 | ); 36 | value4 = await translator 37 | .translate( 38 | widget.results[3]['meanings']['light'].join('\n\n'), 39 | to: 'vi', 40 | ) 41 | .then((result) { 42 | setState(() { 43 | loading = false; 44 | }); 45 | return result; 46 | }); 47 | } 48 | 49 | @override 50 | void initState() { 51 | super.initState(); 52 | initContent(); 53 | } 54 | 55 | @override 56 | Widget build(BuildContext context) { 57 | return Scaffold( 58 | appBar: AppBar( 59 | backgroundColor: colorBlack, 60 | elevation: 4.0, 61 | centerTitle: true, 62 | title: Text( 63 | 'solveCards'.trArgs(), 64 | style: TextStyle( 65 | color: mCL, 66 | fontFamily: 'Lato', 67 | fontSize: width / 20.0, 68 | fontWeight: FontWeight.w600, 69 | ), 70 | ), 71 | actions: [ 72 | GestureDetector( 73 | onTap: () { 74 | if (Get.locale == Locale('vi', 'VN')) { 75 | Get.updateLocale(Locale('en', 'US')); 76 | } else { 77 | Get.updateLocale(Locale('vi', 'VN')); 78 | } 79 | }, 80 | child: Container( 81 | padding: EdgeInsets.symmetric(horizontal: 16.0, vertical: 2.0), 82 | margin: EdgeInsets.symmetric(vertical: 1.0), 83 | decoration: BoxDecoration( 84 | color: Colors.transparent, 85 | borderRadius: BorderRadius.circular(8.0), 86 | ), 87 | alignment: Alignment.center, 88 | child: Text( 89 | Get.locale == Locale('vi', 'VN') ? 'vi' : 'en', 90 | style: TextStyle( 91 | color: colorPrimary, 92 | fontFamily: 'Lato', 93 | fontSize: width / 22.5, 94 | fontWeight: FontWeight.w600, 95 | ), 96 | ), 97 | ), 98 | ), 99 | SizedBox(width: 8.0), 100 | ], 101 | ), 102 | body: loading 103 | ? Container( 104 | color: colorBlack, 105 | height: height, 106 | width: width, 107 | child: Center( 108 | child: CircularProgressIndicator(), 109 | ), 110 | ) 111 | : Container( 112 | color: colorBlack, 113 | height: height, 114 | width: width, 115 | padding: EdgeInsets.symmetric(horizontal: 20.0), 116 | child: SingleChildScrollView( 117 | physics: ClampingScrollPhysics(), 118 | child: Column( 119 | crossAxisAlignment: CrossAxisAlignment.start, 120 | children: [ 121 | SizedBox(height: 20.0), 122 | _buildTitle('overview'.trArgs(), widget.results[0]['name']), 123 | SizedBox(height: 16.0), 124 | Get.locale == Locale('vi', 'VN') 125 | ? _buildContentTranslate(value1) 126 | : _buildContent(widget.results[0]['meanings']['light']), 127 | SizedBox(height: 16.0), 128 | _buildTitle('work'.trArgs(), widget.results[1]['name']), 129 | SizedBox(height: 16.0), 130 | Get.locale == Locale('vi', 'VN') 131 | ? _buildContentTranslate(value2) 132 | : _buildContent(widget.results[1]['meanings']['light']), 133 | SizedBox(height: 16.0), 134 | _buildTitle('love'.trArgs(), widget.results[2]['name']), 135 | SizedBox(height: 16.0), 136 | Get.locale == Locale('vi', 'VN') 137 | ? _buildContentTranslate(value3) 138 | : _buildContent(widget.results[2]['meanings']['light']), 139 | SizedBox(height: 16.0), 140 | _buildTitle('finance'.trArgs(), widget.results[3]['name']), 141 | SizedBox(height: 16.0), 142 | Get.locale == Locale('vi', 'VN') 143 | ? _buildContentTranslate(value4) 144 | : _buildContent(widget.results[3]['meanings']['light']), 145 | SizedBox(height: 32.0), 146 | ], 147 | ), 148 | ), 149 | ), 150 | ); 151 | } 152 | 153 | Widget _buildTitle(title, value) { 154 | return RichText( 155 | text: TextSpan( 156 | children: [ 157 | TextSpan( 158 | text: title + ':\t\t', 159 | style: TextStyle( 160 | color: colorPrimary, 161 | fontFamily: 'Lato', 162 | fontSize: width / 22.5, 163 | fontWeight: FontWeight.w600, 164 | ), 165 | ), 166 | TextSpan( 167 | text: value, 168 | style: TextStyle( 169 | color: mCL, 170 | fontFamily: 'Lato', 171 | fontSize: width / 23.0, 172 | fontWeight: FontWeight.w600, 173 | ), 174 | ), 175 | ], 176 | ), 177 | ); 178 | } 179 | 180 | Widget _buildContent(List content) { 181 | return Text( 182 | content.join('\n\n'), 183 | style: TextStyle( 184 | color: mCL, 185 | fontFamily: 'Lato', 186 | fontSize: width / 25.0, 187 | fontWeight: FontWeight.w400, 188 | ), 189 | ); 190 | } 191 | 192 | Widget _buildContentTranslate(future) { 193 | return Text( 194 | future.toString(), 195 | style: TextStyle( 196 | color: mCL, 197 | fontFamily: 'Lato', 198 | fontSize: width / 25.0, 199 | fontWeight: FontWeight.w400, 200 | ), 201 | ); 202 | } 203 | } 204 | -------------------------------------------------------------------------------- /lib/src/pages/home/home_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flip_card/flip_card.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:flutter_getx_template/data/tarot_json.dart'; 4 | import 'package:flutter_getx_template/src/public/constant.dart'; 5 | import 'package:flutter_getx_template/src/public/styles.dart'; 6 | import 'package:flutter_getx_template/src/routes/app_pages.dart'; 7 | import 'package:flutter_icons/flutter_icons.dart'; 8 | import 'package:flutter_neumorphic/flutter_neumorphic.dart'; 9 | import 'package:intl/intl.dart'; 10 | import 'package:lottie/lottie.dart'; 11 | import 'package:get/get.dart'; 12 | 13 | class HomePage extends StatefulWidget { 14 | @override 15 | State createState() => _HomePageState(); 16 | } 17 | 18 | class _HomePageState extends State { 19 | GlobalKey cardKey1 = GlobalKey(); 20 | GlobalKey cardKey2 = GlobalKey(); 21 | GlobalKey cardKey3 = GlobalKey(); 22 | GlobalKey cardKey4 = GlobalKey(); 23 | 24 | DateFormat format = DateFormat('dd/MM'); 25 | List flips = [false, false, false, false]; 26 | List tarots = []; 27 | List unLockCard = []; 28 | 29 | @override 30 | void initState() { 31 | super.initState(); 32 | tarots.addAll(tarotData); 33 | unLockCard.addAll(tarotData); 34 | } 35 | 36 | @override 37 | Widget build(BuildContext context) { 38 | return Scaffold( 39 | appBar: AppBar( 40 | backgroundColor: colorBlack, 41 | elevation: .0, 42 | centerTitle: true, 43 | title: Text( 44 | 'today'.trArgs() + ' ' + format.format(DateTime.now()), 45 | style: TextStyle( 46 | color: mCL, 47 | fontFamily: 'Lato', 48 | fontSize: width / 20.0, 49 | fontWeight: FontWeight.w600, 50 | ), 51 | ), 52 | actions: [ 53 | GestureDetector( 54 | onTap: () { 55 | if (Get.locale == Locale('vi', 'VN')) { 56 | Get.updateLocale(Locale('en', 'US')); 57 | } else { 58 | Get.updateLocale(Locale('vi', 'VN')); 59 | } 60 | }, 61 | child: Container( 62 | padding: EdgeInsets.symmetric(horizontal: 16.0, vertical: 2.0), 63 | margin: EdgeInsets.symmetric(vertical: 1.0), 64 | decoration: BoxDecoration( 65 | color: Colors.transparent, 66 | borderRadius: BorderRadius.circular(8.0), 67 | ), 68 | alignment: Alignment.center, 69 | child: Text( 70 | Get.locale == Locale('vi', 'VN') ? 'vi' : 'en', 71 | style: TextStyle( 72 | color: colorPrimary, 73 | fontFamily: 'Lato', 74 | fontSize: width / 22.5, 75 | fontWeight: FontWeight.w600, 76 | ), 77 | ), 78 | ), 79 | ), 80 | SizedBox(width: 8.0), 81 | ], 82 | ), 83 | body: Container( 84 | color: colorBlack, 85 | height: height, 86 | width: width, 87 | child: Column( 88 | crossAxisAlignment: CrossAxisAlignment.center, 89 | children: [ 90 | SizedBox(height: 12.0), 91 | Container( 92 | child: Column( 93 | children: [ 94 | Row( 95 | mainAxisAlignment: MainAxisAlignment.center, 96 | children: [ 97 | _buildTarotCard(cardKey1, 0, 'overview'.trArgs()), 98 | SizedBox(width: 16.0), 99 | _buildTarotCard(cardKey2, 1, 'work'.trArgs()), 100 | ], 101 | ), 102 | SizedBox(height: 16.0), 103 | Row( 104 | mainAxisAlignment: MainAxisAlignment.center, 105 | children: [ 106 | _buildTarotCard(cardKey3, 2, 'love'.trArgs()), 107 | SizedBox(width: 16.0), 108 | _buildTarotCard(cardKey4, 3, 'finance'.trArgs()), 109 | ], 110 | ), 111 | SizedBox(height: 30.0), 112 | flips.contains(false) 113 | ? Container() 114 | : NeumorphicButton( 115 | onPressed: () => Get.toNamed(Routes.DETAILS, 116 | arguments: unLockCard.sublist(0, 4)), 117 | margin: EdgeInsets.symmetric(horizontal: 48.0), 118 | child: Row( 119 | mainAxisAlignment: MainAxisAlignment.center, 120 | children: [ 121 | Text( 122 | 'solveCards'.trArgs(), 123 | style: TextStyle( 124 | color: colorPrimary, 125 | fontFamily: 'Lato', 126 | fontSize: width / 24.0, 127 | fontWeight: FontWeight.w600, 128 | ), 129 | ), 130 | SizedBox(width: 12.0), 131 | Icon( 132 | Feather.arrow_right, 133 | size: width / 24.0, 134 | color: colorPrimary, 135 | ), 136 | ], 137 | ), 138 | padding: EdgeInsets.all(width / 32.0), 139 | style: NeumorphicStyle( 140 | shape: NeumorphicShape.convex, 141 | boxShape: NeumorphicBoxShape.roundRect( 142 | BorderRadius.circular(12.0), 143 | ), 144 | depth: 15.0, 145 | intensity: .15, 146 | color: Colors.black.withOpacity(.75), 147 | ), 148 | duration: Duration(milliseconds: 200), 149 | ) 150 | ], 151 | ), 152 | ), 153 | ], 154 | ), 155 | ), 156 | ); 157 | } 158 | 159 | Widget _buildTarotCard(key, number, title) { 160 | return Column( 161 | children: [ 162 | FlipCard( 163 | key: key, 164 | flipOnTouch: false, 165 | front: GestureDetector( 166 | onTap: () { 167 | tarots.shuffle(); 168 | key.currentState.toggleCard(); 169 | setState(() { 170 | flips[number] = true; 171 | }); 172 | unLockCard[number] = tarots[0]; 173 | tarots.removeAt(0); 174 | }, 175 | child: Container( 176 | height: height * .32, 177 | width: width * .4, 178 | decoration: BoxDecoration( 179 | borderRadius: BorderRadius.circular(12.0), 180 | color: colorBackground, 181 | ), 182 | child: Lottie.asset('assets/lottie/lottie_card.json'), 183 | ), 184 | ), 185 | back: GestureDetector( 186 | onTap: () => null, 187 | child: Container( 188 | height: height * .32, 189 | width: width * .4, 190 | decoration: BoxDecoration( 191 | borderRadius: BorderRadius.circular(4.0), 192 | color: colorBackground, 193 | image: DecorationImage( 194 | image: AssetImage(unLockCard.length < number + 1 195 | ? 'images/${tarots[number]['img']}' 196 | : 'images/${unLockCard[number]['img']}'), 197 | fit: BoxFit.cover, 198 | ), 199 | ), 200 | ), 201 | ), 202 | ), 203 | SizedBox(height: 12.0), 204 | Text( 205 | flips[number] == true ? unLockCard[number]['name'] : title, 206 | style: TextStyle( 207 | fontSize: width / 24.0, 208 | fontWeight: FontWeight.w400, 209 | fontFamily: 'Lato', 210 | letterSpacing: 1.5, 211 | wordSpacing: 1.5, 212 | color: mC, 213 | ), 214 | textAlign: TextAlign.center, 215 | ), 216 | ], 217 | ); 218 | } 219 | } 220 | -------------------------------------------------------------------------------- /lib/src/pages/splash/splash_page.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:lottie/lottie.dart'; 3 | import 'package:flutter_getx_template/src/public/styles.dart'; 4 | 5 | class SplashPage extends StatefulWidget { 6 | final String points; 7 | SplashPage({this.points}); 8 | @override 9 | State createState() => _SplashPageState(); 10 | } 11 | 12 | class _SplashPageState extends State { 13 | @override 14 | Widget build(BuildContext context) { 15 | final _size = MediaQuery.of(context).size; 16 | return Scaffold( 17 | body: Container( 18 | color: colorBlack, 19 | height: _size.height, 20 | width: _size.width, 21 | child: Column( 22 | children: [ 23 | Expanded( 24 | child: Column( 25 | mainAxisAlignment: MainAxisAlignment.center, 26 | children: [ 27 | Container( 28 | height: _size.width * .9, 29 | width: _size.width * .9, 30 | child: Lottie.asset('assets/lottie/lottie_splash.json'), 31 | ), 32 | RichText( 33 | textAlign: TextAlign.center, 34 | text: TextSpan( 35 | children: [ 36 | TextSpan( 37 | text: 'Tarot Fortune Telling', 38 | style: TextStyle( 39 | color: mCL, 40 | fontFamily: 'Lato', 41 | fontSize: _size.width / 18.8, 42 | ), 43 | ), 44 | ], 45 | ), 46 | ), 47 | ], 48 | ), 49 | ), 50 | RichText( 51 | textAlign: TextAlign.center, 52 | text: TextSpan( 53 | children: [ 54 | TextSpan( 55 | text: '@${DateTime.now().year} Develop by ', 56 | style: TextStyle( 57 | color: mC, 58 | fontFamily: 'Lato', 59 | fontSize: _size.width / 32.5, 60 | fontWeight: FontWeight.w400, 61 | ), 62 | ), 63 | TextSpan( 64 | text: 'lambiengcode', 65 | style: TextStyle( 66 | color: mCL, 67 | fontFamily: 'Lato', 68 | fontSize: _size.width / 35.0, 69 | fontWeight: FontWeight.w600, 70 | ), 71 | ), 72 | ], 73 | ), 74 | ), 75 | SizedBox(height: 32.0), 76 | ], 77 | ), 78 | ), 79 | ); 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /lib/src/public/constant.dart: -------------------------------------------------------------------------------- 1 | import 'package:get/get.dart'; 2 | 3 | const baseUrl = 'http://localhost:port/route'; 4 | var width = Get.width; 5 | var height = Get.height; 6 | -------------------------------------------------------------------------------- /lib/src/public/styles.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | var colorBackground = Color(0xFF0E1111); 4 | 5 | var colorBlack = Color(0xFF14171A); 6 | var colorDarkGrey = Color(0xFF657786); 7 | var colorPrimary = Color(0xFF1DA1F2); 8 | var colorTitle = Color(0xFF2C3D50); 9 | 10 | var colorHigh = Colors.redAccent; 11 | var colorMedium = Colors.amber.shade700; 12 | var colorLow = colorPrimary; 13 | var colorCompleted = Colors.green; 14 | var colorFailed = colorDarkGrey; 15 | var colorActive = Color(0xFF00D72F); 16 | 17 | Color mC = Colors.grey.shade100; 18 | Color mCL = Colors.white; 19 | Color mCM = Colors.grey.shade200; 20 | Color mCH = Colors.grey.shade400; 21 | Color mCD = Colors.black.withOpacity(0.075); 22 | Color mCC = Colors.green.withOpacity(0.65); 23 | Color fCD = Colors.grey.shade700; 24 | Color fCL = Colors.grey; 25 | 26 | BoxDecoration nMbox = BoxDecoration( 27 | borderRadius: BorderRadius.circular(15), 28 | color: mC, 29 | boxShadow: [ 30 | BoxShadow( 31 | color: mCD, 32 | offset: Offset(10, 10), 33 | blurRadius: 10, 34 | ), 35 | BoxShadow( 36 | color: mCL, 37 | offset: Offset(-10, -10), 38 | blurRadius: 10, 39 | ), 40 | ], 41 | ); 42 | 43 | BoxDecoration nMboxCategoryOff = BoxDecoration( 44 | shape: BoxShape.circle, 45 | color: mC, 46 | boxShadow: [ 47 | BoxShadow( 48 | color: mCD, 49 | offset: Offset(10, 10), 50 | blurRadius: 10, 51 | ), 52 | BoxShadow( 53 | color: mCL, 54 | offset: Offset(-10, -10), 55 | blurRadius: 10, 56 | ), 57 | ], 58 | ); 59 | 60 | BoxDecoration nMboxCategoryOn = BoxDecoration( 61 | shape: BoxShape.circle, 62 | color: mCD, 63 | boxShadow: [ 64 | BoxShadow( 65 | color: mCL, offset: Offset(3, 3), blurRadius: 3, spreadRadius: -3), 66 | ], 67 | ); 68 | 69 | BoxDecoration nMboxInvert = BoxDecoration( 70 | borderRadius: BorderRadius.circular(15), 71 | color: mCD, 72 | boxShadow: [ 73 | BoxShadow( 74 | color: mCL, offset: Offset(3, 3), blurRadius: 3, spreadRadius: -3), 75 | ]); 76 | 77 | BoxDecoration nMboxInvertActive = nMboxInvert.copyWith(color: mCC); 78 | 79 | BoxDecoration nMbtn = BoxDecoration( 80 | borderRadius: BorderRadius.circular(10), 81 | color: mC, 82 | boxShadow: [ 83 | BoxShadow( 84 | color: mCD, 85 | offset: Offset(2, 2), 86 | blurRadius: 2, 87 | ) 88 | ], 89 | ); 90 | -------------------------------------------------------------------------------- /lib/src/routes/app_pages.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter_getx_template/src/app.dart'; 2 | import 'package:flutter_getx_template/src/pages/home/details_page.dart'; 3 | import 'package:get/get.dart'; 4 | part 'app_routes.dart'; 5 | 6 | // ignore: avoid_classes_with_only_static_members 7 | class AppPages { 8 | static const INITIAL = Routes.ROOT; 9 | 10 | static final routes = [ 11 | GetPage( 12 | name: Routes.ROOT, 13 | page: () => App(), 14 | children: [], 15 | ), 16 | GetPage( 17 | name: Routes.DETAILS, 18 | page: () => DetailsPage( 19 | results: Get.arguments, 20 | ), 21 | children: [], 22 | ), 23 | ]; 24 | } 25 | -------------------------------------------------------------------------------- /lib/src/routes/app_routes.dart: -------------------------------------------------------------------------------- 1 | part of 'app_pages.dart'; 2 | 3 | abstract class Routes { 4 | static const ROOT = '/root'; 5 | static const HOME = '/home'; 6 | static const DETAILS = '/details'; 7 | } 8 | -------------------------------------------------------------------------------- /lib/src/shared/logger/logger_utils.dart: -------------------------------------------------------------------------------- 1 | class Logger { 2 | static void write(String text, {bool isError = false}) { 3 | Future.microtask(() => print('** $text. isError: [$isError]')); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /lib/src/theme/theme_service.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:get_storage/get_storage.dart'; 3 | import 'package:get/get.dart'; 4 | 5 | class ThemeService { 6 | final _getStorage = GetStorage(); 7 | final storageKey = 'isDarkMode'; 8 | 9 | ThemeMode getThemeMode() { 10 | return isSavedDarkMode() ? ThemeMode.dark : ThemeMode.light; 11 | } 12 | 13 | bool isSavedDarkMode() { 14 | return _getStorage.read(storageKey) ?? false; 15 | } 16 | 17 | void saveThemeMode(bool isDarkMode) { 18 | _getStorage.write(storageKey, isDarkMode); 19 | } 20 | 21 | void changeThemeMode() { 22 | Get.changeThemeMode(isSavedDarkMode() ? ThemeMode.light : ThemeMode.dark); 23 | saveThemeMode(!isSavedDarkMode()); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lib/src/theme/themes.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter_getx_template/src/public/styles.dart'; 3 | 4 | class Themes { 5 | final lightTheme = ThemeData.light().copyWith( 6 | primaryColor: colorPrimary, 7 | appBarTheme: AppBarTheme( 8 | brightness: Brightness.light, 9 | textTheme: TextTheme( 10 | headline2: TextStyle(color: colorTitle), 11 | ), 12 | ), 13 | ); 14 | final darkTheme = ThemeData.dark().copyWith( 15 | primaryColor: colorPrimary, 16 | appBarTheme: AppBarTheme( 17 | brightness: Brightness.dark, 18 | textTheme: TextTheme( 19 | headline2: TextStyle(color: mC), 20 | ), 21 | ), 22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | _fe_analyzer_shared: 5 | dependency: transitive 6 | description: 7 | name: _fe_analyzer_shared 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "12.0.0" 11 | analyzer: 12 | dependency: transitive 13 | description: 14 | name: analyzer 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "0.40.6" 18 | archive: 19 | dependency: transitive 20 | description: 21 | name: archive 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.0.13" 25 | args: 26 | dependency: transitive 27 | description: 28 | name: args 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "1.6.0" 32 | async: 33 | dependency: transitive 34 | description: 35 | name: async 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "2.5.0-nullsafety.3" 39 | boolean_selector: 40 | dependency: transitive 41 | description: 42 | name: boolean_selector 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "2.1.0-nullsafety.3" 46 | build: 47 | dependency: transitive 48 | description: 49 | name: build 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.6.2" 53 | built_collection: 54 | dependency: transitive 55 | description: 56 | name: built_collection 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "4.3.2" 60 | built_value: 61 | dependency: transitive 62 | description: 63 | name: built_value 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "7.1.0" 67 | characters: 68 | dependency: transitive 69 | description: 70 | name: characters 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "1.1.0-nullsafety.5" 74 | charcode: 75 | dependency: transitive 76 | description: 77 | name: charcode 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.2.0-nullsafety.3" 81 | cli_util: 82 | dependency: transitive 83 | description: 84 | name: cli_util 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "0.2.0" 88 | clock: 89 | dependency: transitive 90 | description: 91 | name: clock 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "1.1.0-nullsafety.3" 95 | code_builder: 96 | dependency: transitive 97 | description: 98 | name: code_builder 99 | url: "https://pub.dartlang.org" 100 | source: hosted 101 | version: "3.7.0" 102 | collection: 103 | dependency: transitive 104 | description: 105 | name: collection 106 | url: "https://pub.dartlang.org" 107 | source: hosted 108 | version: "1.15.0-nullsafety.5" 109 | convert: 110 | dependency: transitive 111 | description: 112 | name: convert 113 | url: "https://pub.dartlang.org" 114 | source: hosted 115 | version: "2.1.1" 116 | coverage: 117 | dependency: transitive 118 | description: 119 | name: coverage 120 | url: "https://pub.dartlang.org" 121 | source: hosted 122 | version: "0.14.2" 123 | crypto: 124 | dependency: transitive 125 | description: 126 | name: crypto 127 | url: "https://pub.dartlang.org" 128 | source: hosted 129 | version: "2.1.5" 130 | cupertino_icons: 131 | dependency: "direct main" 132 | description: 133 | name: cupertino_icons 134 | url: "https://pub.dartlang.org" 135 | source: hosted 136 | version: "1.0.2" 137 | dart_style: 138 | dependency: transitive 139 | description: 140 | name: dart_style 141 | url: "https://pub.dartlang.org" 142 | source: hosted 143 | version: "1.3.10" 144 | fake_async: 145 | dependency: transitive 146 | description: 147 | name: fake_async 148 | url: "https://pub.dartlang.org" 149 | source: hosted 150 | version: "1.2.0-nullsafety.3" 151 | ffi: 152 | dependency: transitive 153 | description: 154 | name: ffi 155 | url: "https://pub.dartlang.org" 156 | source: hosted 157 | version: "0.1.3" 158 | file: 159 | dependency: transitive 160 | description: 161 | name: file 162 | url: "https://pub.dartlang.org" 163 | source: hosted 164 | version: "6.0.0-nullsafety.4" 165 | fixnum: 166 | dependency: transitive 167 | description: 168 | name: fixnum 169 | url: "https://pub.dartlang.org" 170 | source: hosted 171 | version: "0.10.11" 172 | flip_card: 173 | dependency: "direct main" 174 | description: 175 | name: flip_card 176 | url: "https://pub.dartlang.org" 177 | source: hosted 178 | version: "0.4.4" 179 | flutter: 180 | dependency: "direct main" 181 | description: flutter 182 | source: sdk 183 | version: "0.0.0" 184 | flutter_driver: 185 | dependency: transitive 186 | description: flutter 187 | source: sdk 188 | version: "0.0.0" 189 | flutter_icons: 190 | dependency: "direct main" 191 | description: 192 | name: flutter_icons 193 | url: "https://pub.dartlang.org" 194 | source: hosted 195 | version: "1.1.0" 196 | flutter_neumorphic: 197 | dependency: "direct main" 198 | description: 199 | name: flutter_neumorphic 200 | url: "https://pub.dartlang.org" 201 | source: hosted 202 | version: "3.0.4+1" 203 | flutter_test: 204 | dependency: "direct dev" 205 | description: flutter 206 | source: sdk 207 | version: "0.0.0" 208 | fuchsia_remote_debug_protocol: 209 | dependency: transitive 210 | description: flutter 211 | source: sdk 212 | version: "0.0.0" 213 | get: 214 | dependency: transitive 215 | description: 216 | name: get 217 | url: "https://pub.dartlang.org" 218 | source: hosted 219 | version: "3.26.0" 220 | get_storage: 221 | dependency: "direct main" 222 | description: 223 | name: get_storage 224 | url: "https://pub.dartlang.org" 225 | source: hosted 226 | version: "1.4.0" 227 | get_test: 228 | dependency: "direct main" 229 | description: 230 | name: get_test 231 | url: "https://pub.dartlang.org" 232 | source: hosted 233 | version: "3.13.3" 234 | glob: 235 | dependency: transitive 236 | description: 237 | name: glob 238 | url: "https://pub.dartlang.org" 239 | source: hosted 240 | version: "1.2.0" 241 | http: 242 | dependency: transitive 243 | description: 244 | name: http 245 | url: "https://pub.dartlang.org" 246 | source: hosted 247 | version: "0.12.2" 248 | http_parser: 249 | dependency: transitive 250 | description: 251 | name: http_parser 252 | url: "https://pub.dartlang.org" 253 | source: hosted 254 | version: "3.1.4" 255 | integration_test: 256 | dependency: "direct dev" 257 | description: flutter 258 | source: sdk 259 | version: "0.9.2+2" 260 | intl: 261 | dependency: "direct main" 262 | description: 263 | name: intl 264 | url: "https://pub.dartlang.org" 265 | source: hosted 266 | version: "0.16.1" 267 | io: 268 | dependency: transitive 269 | description: 270 | name: io 271 | url: "https://pub.dartlang.org" 272 | source: hosted 273 | version: "0.3.4" 274 | js: 275 | dependency: transitive 276 | description: 277 | name: js 278 | url: "https://pub.dartlang.org" 279 | source: hosted 280 | version: "0.6.3-nullsafety.3" 281 | json_rpc_2: 282 | dependency: transitive 283 | description: 284 | name: json_rpc_2 285 | url: "https://pub.dartlang.org" 286 | source: hosted 287 | version: "2.2.2" 288 | logging: 289 | dependency: transitive 290 | description: 291 | name: logging 292 | url: "https://pub.dartlang.org" 293 | source: hosted 294 | version: "0.11.4" 295 | lottie: 296 | dependency: "direct main" 297 | description: 298 | name: lottie 299 | url: "https://pub.dartlang.org" 300 | source: hosted 301 | version: "0.7.0+1" 302 | matcher: 303 | dependency: transitive 304 | description: 305 | name: matcher 306 | url: "https://pub.dartlang.org" 307 | source: hosted 308 | version: "0.12.10-nullsafety.3" 309 | meta: 310 | dependency: transitive 311 | description: 312 | name: meta 313 | url: "https://pub.dartlang.org" 314 | source: hosted 315 | version: "1.3.0-nullsafety.6" 316 | mockito: 317 | dependency: transitive 318 | description: 319 | name: mockito 320 | url: "https://pub.dartlang.org" 321 | source: hosted 322 | version: "4.1.4" 323 | node_interop: 324 | dependency: transitive 325 | description: 326 | name: node_interop 327 | url: "https://pub.dartlang.org" 328 | source: hosted 329 | version: "1.2.1" 330 | node_io: 331 | dependency: transitive 332 | description: 333 | name: node_io 334 | url: "https://pub.dartlang.org" 335 | source: hosted 336 | version: "1.1.1" 337 | package_config: 338 | dependency: transitive 339 | description: 340 | name: package_config 341 | url: "https://pub.dartlang.org" 342 | source: hosted 343 | version: "1.9.3" 344 | path: 345 | dependency: transitive 346 | description: 347 | name: path 348 | url: "https://pub.dartlang.org" 349 | source: hosted 350 | version: "1.8.0-nullsafety.3" 351 | path_provider: 352 | dependency: transitive 353 | description: 354 | name: path_provider 355 | url: "https://pub.dartlang.org" 356 | source: hosted 357 | version: "1.6.28" 358 | path_provider_linux: 359 | dependency: transitive 360 | description: 361 | name: path_provider_linux 362 | url: "https://pub.dartlang.org" 363 | source: hosted 364 | version: "0.0.1+2" 365 | path_provider_macos: 366 | dependency: transitive 367 | description: 368 | name: path_provider_macos 369 | url: "https://pub.dartlang.org" 370 | source: hosted 371 | version: "0.0.4+8" 372 | path_provider_platform_interface: 373 | dependency: transitive 374 | description: 375 | name: path_provider_platform_interface 376 | url: "https://pub.dartlang.org" 377 | source: hosted 378 | version: "1.0.4" 379 | path_provider_windows: 380 | dependency: transitive 381 | description: 382 | name: path_provider_windows 383 | url: "https://pub.dartlang.org" 384 | source: hosted 385 | version: "0.0.4+3" 386 | pedantic: 387 | dependency: transitive 388 | description: 389 | name: pedantic 390 | url: "https://pub.dartlang.org" 391 | source: hosted 392 | version: "1.10.0-nullsafety.3" 393 | platform: 394 | dependency: transitive 395 | description: 396 | name: platform 397 | url: "https://pub.dartlang.org" 398 | source: hosted 399 | version: "3.0.0-nullsafety.4" 400 | plugin_platform_interface: 401 | dependency: transitive 402 | description: 403 | name: plugin_platform_interface 404 | url: "https://pub.dartlang.org" 405 | source: hosted 406 | version: "1.0.3" 407 | pool: 408 | dependency: transitive 409 | description: 410 | name: pool 411 | url: "https://pub.dartlang.org" 412 | source: hosted 413 | version: "1.5.0-nullsafety.3" 414 | process: 415 | dependency: transitive 416 | description: 417 | name: process 418 | url: "https://pub.dartlang.org" 419 | source: hosted 420 | version: "4.0.0-nullsafety.4" 421 | pub_semver: 422 | dependency: transitive 423 | description: 424 | name: pub_semver 425 | url: "https://pub.dartlang.org" 426 | source: hosted 427 | version: "1.4.4" 428 | quiver: 429 | dependency: transitive 430 | description: 431 | name: quiver 432 | url: "https://pub.dartlang.org" 433 | source: hosted 434 | version: "2.1.5" 435 | sky_engine: 436 | dependency: transitive 437 | description: flutter 438 | source: sdk 439 | version: "0.0.99" 440 | source_gen: 441 | dependency: transitive 442 | description: 443 | name: source_gen 444 | url: "https://pub.dartlang.org" 445 | source: hosted 446 | version: "0.9.10+2" 447 | source_map_stack_trace: 448 | dependency: transitive 449 | description: 450 | name: source_map_stack_trace 451 | url: "https://pub.dartlang.org" 452 | source: hosted 453 | version: "2.1.0-nullsafety.4" 454 | source_maps: 455 | dependency: transitive 456 | description: 457 | name: source_maps 458 | url: "https://pub.dartlang.org" 459 | source: hosted 460 | version: "0.10.10-nullsafety.3" 461 | source_span: 462 | dependency: transitive 463 | description: 464 | name: source_span 465 | url: "https://pub.dartlang.org" 466 | source: hosted 467 | version: "1.8.0-nullsafety.4" 468 | stack_trace: 469 | dependency: transitive 470 | description: 471 | name: stack_trace 472 | url: "https://pub.dartlang.org" 473 | source: hosted 474 | version: "1.10.0-nullsafety.6" 475 | stream_channel: 476 | dependency: transitive 477 | description: 478 | name: stream_channel 479 | url: "https://pub.dartlang.org" 480 | source: hosted 481 | version: "2.1.0-nullsafety.3" 482 | string_scanner: 483 | dependency: transitive 484 | description: 485 | name: string_scanner 486 | url: "https://pub.dartlang.org" 487 | source: hosted 488 | version: "1.1.0-nullsafety.3" 489 | sync_http: 490 | dependency: transitive 491 | description: 492 | name: sync_http 493 | url: "https://pub.dartlang.org" 494 | source: hosted 495 | version: "0.2.0" 496 | term_glyph: 497 | dependency: transitive 498 | description: 499 | name: term_glyph 500 | url: "https://pub.dartlang.org" 501 | source: hosted 502 | version: "1.2.0-nullsafety.3" 503 | test_api: 504 | dependency: transitive 505 | description: 506 | name: test_api 507 | url: "https://pub.dartlang.org" 508 | source: hosted 509 | version: "0.2.19-nullsafety.6" 510 | test_core: 511 | dependency: transitive 512 | description: 513 | name: test_core 514 | url: "https://pub.dartlang.org" 515 | source: hosted 516 | version: "0.3.12-nullsafety.9" 517 | translator: 518 | dependency: "direct main" 519 | description: 520 | name: translator 521 | url: "https://pub.dartlang.org" 522 | source: hosted 523 | version: "0.1.5" 524 | typed_data: 525 | dependency: transitive 526 | description: 527 | name: typed_data 528 | url: "https://pub.dartlang.org" 529 | source: hosted 530 | version: "1.3.0-nullsafety.5" 531 | vector_math: 532 | dependency: transitive 533 | description: 534 | name: vector_math 535 | url: "https://pub.dartlang.org" 536 | source: hosted 537 | version: "2.1.0-nullsafety.5" 538 | vm_service: 539 | dependency: transitive 540 | description: 541 | name: vm_service 542 | url: "https://pub.dartlang.org" 543 | source: hosted 544 | version: "5.5.0" 545 | watcher: 546 | dependency: transitive 547 | description: 548 | name: watcher 549 | url: "https://pub.dartlang.org" 550 | source: hosted 551 | version: "0.9.7+15" 552 | web_socket_channel: 553 | dependency: transitive 554 | description: 555 | name: web_socket_channel 556 | url: "https://pub.dartlang.org" 557 | source: hosted 558 | version: "1.1.0" 559 | webdriver: 560 | dependency: transitive 561 | description: 562 | name: webdriver 563 | url: "https://pub.dartlang.org" 564 | source: hosted 565 | version: "2.1.2" 566 | win32: 567 | dependency: transitive 568 | description: 569 | name: win32 570 | url: "https://pub.dartlang.org" 571 | source: hosted 572 | version: "1.7.4+1" 573 | xdg_directories: 574 | dependency: transitive 575 | description: 576 | name: xdg_directories 577 | url: "https://pub.dartlang.org" 578 | source: hosted 579 | version: "0.1.2" 580 | yaml: 581 | dependency: transitive 582 | description: 583 | name: yaml 584 | url: "https://pub.dartlang.org" 585 | source: hosted 586 | version: "2.2.1" 587 | sdks: 588 | dart: ">=2.12.0-0.0 <3.0.0" 589 | flutter: ">=1.17.0" 590 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: flutter_getx_template 2 | description: A new Flutter project. 3 | 4 | # The following line prevents the package from being accidentally published to 5 | # pub.dev using `pub publish`. This is preferred for private packages. 6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev 7 | 8 | # The following defines the version and build number for your application. 9 | # A version number is three numbers separated by dots, like 1.2.43 10 | # followed by an optional build number separated by a +. 11 | # Both the version and the builder number may be overridden in flutter 12 | # build by specifying --build-name and --build-number, respectively. 13 | # In Android, build-name is used as versionName while build-number used as versionCode. 14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning 15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. 16 | # Read more about iOS versioning at 17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html 18 | version: 1.0.0+1 19 | 20 | environment: 21 | sdk: ">=2.7.0 <3.0.0" 22 | 23 | dependencies: 24 | flutter: 25 | sdk: flutter 26 | 27 | 28 | # The following adds the Cupertino Icons font to your application. 29 | # Use with the CupertinoIcons class for iOS style icons. 30 | cupertino_icons: ^1.0.1 31 | get_test: ^3.13.3 32 | get_storage: ^1.4.0 33 | flip_card: ^0.4.4 34 | lottie: ^0.7.0+1 35 | intl: 36 | flutter_neumorphic: ^3.0.4+1 37 | flutter_icons: 38 | translator: ^0.1.5 39 | 40 | dev_dependencies: 41 | flutter_test: 42 | sdk: flutter 43 | integration_test: 44 | sdk: flutter 45 | 46 | # For information on the generic Dart part of this file, see the 47 | # following page: https://dart.dev/tools/pub/pubspec 48 | 49 | # The following section is specific to Flutter. 50 | flutter: 51 | 52 | # The following line ensures that the Material Icons font is 53 | # included with your application, so that you can use the icons in 54 | # the material Icons class. 55 | uses-material-design: true 56 | 57 | # To add assets to your application, add an assets section, like this: 58 | assets: 59 | - images/ 60 | - assets/lottie/lottie_splash.json 61 | - assets/lottie/lottie_card.json 62 | 63 | # An image asset can refer to one or more resolution-specific "variants", see 64 | # https://flutter.dev/assets-and-images/#resolution-aware. 65 | 66 | # For details regarding adding assets from package dependencies, see 67 | # https://flutter.dev/assets-and-images/#from-packages 68 | 69 | # To add custom fonts to your application, add a fonts section here, 70 | # in this "flutter" section. Each entry in this list should have a 71 | # "family" key with the font family name, and a "fonts" key with a 72 | # list giving the asset and other descriptors for the font. For 73 | # example: 74 | fonts: 75 | 76 | - family: Lobster 77 | fonts: 78 | - asset: assets/fonts/Lobster-Regular.ttf 79 | 80 | - family: Raleway 81 | fonts: 82 | - asset: assets/fonts/Raleway-Regular.ttf 83 | 84 | - family: Raleway-Bold 85 | fonts: 86 | - asset: assets/fonts/Raleway-Bold.ttf 87 | 88 | - family: Lato 89 | fonts: 90 | - asset: assets/fonts/Lato-Regular.ttf 91 | 92 | - family: Lato-Bold 93 | fonts: 94 | - asset: assets/fonts/Lato-Bold.ttf 95 | # 96 | # For details regarding fonts from package dependencies, 97 | # see https://flutter.dev/custom-fonts/#from-packages 98 | -------------------------------------------------------------------------------- /screenshots/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/screenshots/home.png -------------------------------------------------------------------------------- /screenshots/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/screenshots/home2.png -------------------------------------------------------------------------------- /screenshots/solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/screenshots/solve.png -------------------------------------------------------------------------------- /screenshots/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/screenshots/splash.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- 1 | // This is a basic Flutter widget test. 2 | // 3 | // To perform an interaction with a widget in your test, use the WidgetTester 4 | // utility that Flutter provides. For example, you can send tap and scroll 5 | // gestures. You can also use WidgetTester to find child widgets in the widget 6 | // tree, read text, and verify that the values of widget properties are correct. 7 | 8 | import 'package:flutter/material.dart'; 9 | import 'package:flutter_getx_template/src/app.dart'; 10 | import 'package:flutter_test/flutter_test.dart'; 11 | 12 | void main() { 13 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 14 | // Build our app and trigger a frame. 15 | await tester.pumpWidget(App()); 16 | 17 | // Verify that our counter starts at 0. 18 | expect(find.text('0'), findsOneWidget); 19 | expect(find.text('1'), findsNothing); 20 | 21 | // Tap the '+' icon and trigger a frame. 22 | await tester.tap(find.byIcon(Icons.add)); 23 | await tester.pump(); 24 | 25 | // Verify that our counter has incremented. 26 | expect(find.text('0'), findsNothing); 27 | expect(find.text('1'), findsOneWidget); 28 | }); 29 | } 30 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lambiengcode/flutter-tarot-card/fc61ba66dc1321d1c258805c0ea1167e345d5fc5/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | flutter_getx_template 30 | 31 | 32 | 33 | 36 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flutter_getx_template", 3 | "short_name": "flutter_getx_template", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "A new Flutter project.", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | } 22 | ] 23 | } 24 | --------------------------------------------------------------------------------