├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── AppScreenshots ├── 1024by500.PNG ├── AddTask.PNG ├── MainApp.PNG ├── UpdateTask.PNG ├── flutterio-ar21.svg └── web_hi_res_512.png ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── koffeecuptales │ │ │ │ └── taskit │ │ │ │ └── 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 │ ├── Proxima-Nova-Bold.otf │ └── Proxima-Nova-Regular.ttf └── logo.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── 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 ├── helpers │ └── database_helper.dart ├── main.dart ├── models │ └── task_model.dart └── screens │ ├── add_task_screen.dart │ ├── login_screen.dart │ └── todo_list_screen.dart ├── privacyPolicy.html ├── pubspec.lock ├── pubspec.yaml ├── 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: b22742018b3edf16c6cadd7b76d9db5e7f9064b5 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "taskit", 9 | "request": "launch", 10 | "type": "dart" 11 | }, 12 | { 13 | "name": "taskit (profile mode)", 14 | "request": "launch", 15 | "type": "dart", 16 | "flutterMode": "profile" 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /AppScreenshots/1024by500.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/AppScreenshots/1024by500.PNG -------------------------------------------------------------------------------- /AppScreenshots/AddTask.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/AppScreenshots/AddTask.PNG -------------------------------------------------------------------------------- /AppScreenshots/MainApp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/AppScreenshots/MainApp.PNG -------------------------------------------------------------------------------- /AppScreenshots/UpdateTask.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/AppScreenshots/UpdateTask.PNG -------------------------------------------------------------------------------- /AppScreenshots/flutterio-ar21.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AppScreenshots/web_hi_res_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/AppScreenshots/web_hi_res_512.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # taskit 2 | 3 | > Not Just Another Todo App. 4 | 5 | ##### P.S: An App build to test the features of Flutter and will continue to update as the world of flutter expands along 6 | 7 | --- 8 | #### Made with ❤️ and 9 | 10 | ![Flutter](https://github.com/krishnaclouds/TaskIt/blob/4b369e7f2b5a32f1a6c56526ff37549df0079dbb/AppScreenshots/flutterio-ar21.svg?raw=true) 11 | 12 | --- 13 | ### Application Overview 14 | 15 | ![TaskIt Application](https://github.com/krishnaclouds/TaskIt/blob/3a921be8036c7760e3f47eb59fca0d798bdedab5/AppScreenshots/1024by500.PNG?raw=true) 16 | 17 | --- 18 | 19 | Project Version List and Future 20 | 21 | | Task | Version | Status | 22 | | --------------------------|:---------------------:|:----:| 23 | | Flutter App Setup | 0.0.1(beta) | [✓] | 24 | | Task List Display | 0.0.2(beta) | [✓] | 25 | | Add Task | 0.0.3(beta) | [✓] | 26 | | Update Task | 0.0.4(beta) | [✓] | 27 | | Connect to sqlflite | 0.0.5(beta) | [✓] | 28 | | Migrate to Null Safety | 0.0.6(beta) | [✓] | 29 | | Add Icons for Android | 0.0.7(beta) | [✓] | 30 | | Launch Android App | 1.0.0 | [✓] | 31 | | Add App Drawer | 1.0.1 | [✓] | 32 | | Login Page Design | 1.0.2 | [✓] | 33 | | login Page Integr' | 1.0.3 | [✓] | 34 | | Change theme Option | 1.0.4 | [✘] | 35 | | Migrate Tasks to DB | 1.1.1(beta) | [✘] | 36 | | Changes to Fit Web | 1.1.2(beta) | [✘] | 37 | | Launch Website for TaskIt | 1.2.0 | [✘] | 38 | | Add Task Suggestion Logic | 1.2.1(beta) | [✘] | 39 | 40 | --- 41 | 42 | ### Release Alert 43 | > App has been released to Android Play Store on 05/06/2021 with the Name : TaskIt . Currently in Review State. 44 | 45 | --- 46 | -------------------------------------------------------------------------------- /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 | 29 | def keystoreProperties = new Properties() 30 | def keystorePropertiesFile = rootProject.file('key.properties') 31 | if (keystorePropertiesFile.exists()) { 32 | keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) 33 | } 34 | 35 | android { 36 | 37 | compileSdkVersion 30 38 | 39 | sourceSets { 40 | main.java.srcDirs += 'src/main/kotlin' 41 | } 42 | 43 | defaultConfig { 44 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 45 | applicationId "com.koffeecuptales.taskit" 46 | minSdkVersion 16 47 | targetSdkVersion 30 48 | versionCode flutterVersionCode.toInteger() 49 | versionName flutterVersionName 50 | } 51 | 52 | signingConfigs { 53 | release { 54 | keyAlias keystoreProperties['keyAlias'] 55 | keyPassword keystoreProperties['keyPassword'] 56 | storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null 57 | storePassword keystoreProperties['storePassword'] 58 | } 59 | } 60 | buildTypes { 61 | release { 62 | signingConfig signingConfigs.release 63 | } 64 | } 65 | } 66 | 67 | flutter { 68 | source '../..' 69 | } 70 | 71 | dependencies { 72 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" 73 | } 74 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 13 | 17 | 21 | 26 | 30 | 31 | 32 | 33 | 34 | 35 | 37 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/koffeecuptales/taskit/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.koffeecuptales.taskit 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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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 | project.evaluationDependsOn(':app') 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } 30 | -------------------------------------------------------------------------------- /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/Proxima-Nova-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/assets/fonts/Proxima-Nova-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/Proxima-Nova-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/assets/fonts/Proxima-Nova-Regular.ttf -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/assets/logo.png -------------------------------------------------------------------------------- /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/ephemeral/ 22 | Flutter/app.flx 23 | Flutter/app.zip 24 | Flutter/flutter_assets/ 25 | Flutter/flutter_export_environment.sh 26 | ServiceDefinitions.json 27 | Runner/GeneratedPluginRegistrant.* 28 | 29 | # Exceptions to above rules. 30 | !default.mode1v3 31 | !default.mode2v3 32 | !default.pbxuser 33 | !default.perspectivev3 34 | -------------------------------------------------------------------------------- /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 "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /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 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; 11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 12 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; 13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXCopyFilesBuildPhase section */ 19 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 20 | isa = PBXCopyFilesBuildPhase; 21 | buildActionMask = 2147483647; 22 | dstPath = ""; 23 | dstSubfolderSpec = 10; 24 | files = ( 25 | ); 26 | name = "Embed Frameworks"; 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXCopyFilesBuildPhase section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 33 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 34 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 35 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; 36 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 37 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 38 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 39 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 40 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 43 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 44 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 45 | /* End PBXFileReference section */ 46 | 47 | /* Begin PBXFrameworksBuildPhase section */ 48 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 49 | isa = PBXFrameworksBuildPhase; 50 | buildActionMask = 2147483647; 51 | files = ( 52 | ); 53 | runOnlyForDeploymentPostprocessing = 0; 54 | }; 55 | /* End PBXFrameworksBuildPhase section */ 56 | 57 | /* Begin PBXGroup section */ 58 | 9740EEB11CF90186004384FC /* Flutter */ = { 59 | isa = PBXGroup; 60 | children = ( 61 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 62 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 63 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 64 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 65 | ); 66 | name = Flutter; 67 | sourceTree = ""; 68 | }; 69 | 97C146E51CF9000F007C117D = { 70 | isa = PBXGroup; 71 | children = ( 72 | 9740EEB11CF90186004384FC /* Flutter */, 73 | 97C146F01CF9000F007C117D /* Runner */, 74 | 97C146EF1CF9000F007C117D /* Products */, 75 | ); 76 | sourceTree = ""; 77 | }; 78 | 97C146EF1CF9000F007C117D /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 97C146EE1CF9000F007C117D /* Runner.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 97C146F01CF9000F007C117D /* Runner */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 90 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 91 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 92 | 97C147021CF9000F007C117D /* Info.plist */, 93 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 94 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 95 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, 96 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, 97 | ); 98 | path = Runner; 99 | sourceTree = ""; 100 | }; 101 | /* End PBXGroup section */ 102 | 103 | /* Begin PBXNativeTarget section */ 104 | 97C146ED1CF9000F007C117D /* Runner */ = { 105 | isa = PBXNativeTarget; 106 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 107 | buildPhases = ( 108 | 9740EEB61CF901F6004384FC /* Run Script */, 109 | 97C146EA1CF9000F007C117D /* Sources */, 110 | 97C146EB1CF9000F007C117D /* Frameworks */, 111 | 97C146EC1CF9000F007C117D /* Resources */, 112 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 113 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 114 | ); 115 | buildRules = ( 116 | ); 117 | dependencies = ( 118 | ); 119 | name = Runner; 120 | productName = Runner; 121 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 122 | productType = "com.apple.product-type.application"; 123 | }; 124 | /* End PBXNativeTarget section */ 125 | 126 | /* Begin PBXProject section */ 127 | 97C146E61CF9000F007C117D /* Project object */ = { 128 | isa = PBXProject; 129 | attributes = { 130 | LastUpgradeCheck = 1020; 131 | ORGANIZATIONNAME = ""; 132 | TargetAttributes = { 133 | 97C146ED1CF9000F007C117D = { 134 | CreatedOnToolsVersion = 7.3.1; 135 | LastSwiftMigration = 1100; 136 | }; 137 | }; 138 | }; 139 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 140 | compatibilityVersion = "Xcode 9.3"; 141 | developmentRegion = en; 142 | hasScannedForEncodings = 0; 143 | knownRegions = ( 144 | en, 145 | Base, 146 | ); 147 | mainGroup = 97C146E51CF9000F007C117D; 148 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 149 | projectDirPath = ""; 150 | projectRoot = ""; 151 | targets = ( 152 | 97C146ED1CF9000F007C117D /* Runner */, 153 | ); 154 | }; 155 | /* End PBXProject section */ 156 | 157 | /* Begin PBXResourcesBuildPhase section */ 158 | 97C146EC1CF9000F007C117D /* Resources */ = { 159 | isa = PBXResourcesBuildPhase; 160 | buildActionMask = 2147483647; 161 | files = ( 162 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 163 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 164 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 165 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 166 | ); 167 | runOnlyForDeploymentPostprocessing = 0; 168 | }; 169 | /* End PBXResourcesBuildPhase section */ 170 | 171 | /* Begin PBXShellScriptBuildPhase section */ 172 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 173 | isa = PBXShellScriptBuildPhase; 174 | buildActionMask = 2147483647; 175 | files = ( 176 | ); 177 | inputPaths = ( 178 | ); 179 | name = "Thin Binary"; 180 | outputPaths = ( 181 | ); 182 | runOnlyForDeploymentPostprocessing = 0; 183 | shellPath = /bin/sh; 184 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; 185 | }; 186 | 9740EEB61CF901F6004384FC /* Run Script */ = { 187 | isa = PBXShellScriptBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | ); 191 | inputPaths = ( 192 | ); 193 | name = "Run Script"; 194 | outputPaths = ( 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | shellPath = /bin/sh; 198 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 199 | }; 200 | /* End PBXShellScriptBuildPhase section */ 201 | 202 | /* Begin PBXSourcesBuildPhase section */ 203 | 97C146EA1CF9000F007C117D /* Sources */ = { 204 | isa = PBXSourcesBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, 208 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 209 | ); 210 | runOnlyForDeploymentPostprocessing = 0; 211 | }; 212 | /* End PBXSourcesBuildPhase section */ 213 | 214 | /* Begin PBXVariantGroup section */ 215 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 216 | isa = PBXVariantGroup; 217 | children = ( 218 | 97C146FB1CF9000F007C117D /* Base */, 219 | ); 220 | name = Main.storyboard; 221 | sourceTree = ""; 222 | }; 223 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 224 | isa = PBXVariantGroup; 225 | children = ( 226 | 97C147001CF9000F007C117D /* Base */, 227 | ); 228 | name = LaunchScreen.storyboard; 229 | sourceTree = ""; 230 | }; 231 | /* End PBXVariantGroup section */ 232 | 233 | /* Begin XCBuildConfiguration section */ 234 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 235 | isa = XCBuildConfiguration; 236 | buildSettings = { 237 | ALWAYS_SEARCH_USER_PATHS = NO; 238 | CLANG_ANALYZER_NONNULL = YES; 239 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 240 | CLANG_CXX_LIBRARY = "libc++"; 241 | CLANG_ENABLE_MODULES = YES; 242 | CLANG_ENABLE_OBJC_ARC = YES; 243 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 244 | CLANG_WARN_BOOL_CONVERSION = YES; 245 | CLANG_WARN_COMMA = YES; 246 | CLANG_WARN_CONSTANT_CONVERSION = YES; 247 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 248 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 249 | CLANG_WARN_EMPTY_BODY = YES; 250 | CLANG_WARN_ENUM_CONVERSION = YES; 251 | CLANG_WARN_INFINITE_RECURSION = YES; 252 | CLANG_WARN_INT_CONVERSION = YES; 253 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 254 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 255 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 257 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 258 | CLANG_WARN_STRICT_PROTOTYPES = YES; 259 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 260 | CLANG_WARN_UNREACHABLE_CODE = YES; 261 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 262 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 263 | COPY_PHASE_STRIP = NO; 264 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 265 | ENABLE_NS_ASSERTIONS = NO; 266 | ENABLE_STRICT_OBJC_MSGSEND = YES; 267 | GCC_C_LANGUAGE_STANDARD = gnu99; 268 | GCC_NO_COMMON_BLOCKS = YES; 269 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 270 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 271 | GCC_WARN_UNDECLARED_SELECTOR = YES; 272 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 273 | GCC_WARN_UNUSED_FUNCTION = YES; 274 | GCC_WARN_UNUSED_VARIABLE = YES; 275 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 276 | MTL_ENABLE_DEBUG_INFO = NO; 277 | SDKROOT = iphoneos; 278 | SUPPORTED_PLATFORMS = iphoneos; 279 | TARGETED_DEVICE_FAMILY = "1,2"; 280 | VALIDATE_PRODUCT = YES; 281 | }; 282 | name = Profile; 283 | }; 284 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 285 | isa = XCBuildConfiguration; 286 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 287 | buildSettings = { 288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 289 | CLANG_ENABLE_MODULES = YES; 290 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 291 | ENABLE_BITCODE = NO; 292 | INFOPLIST_FILE = Runner/Info.plist; 293 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 294 | PRODUCT_BUNDLE_IDENTIFIER = com.koffeecuptales.taskit; 295 | PRODUCT_NAME = "$(TARGET_NAME)"; 296 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 297 | SWIFT_VERSION = 5.0; 298 | VERSIONING_SYSTEM = "apple-generic"; 299 | }; 300 | name = Profile; 301 | }; 302 | 97C147031CF9000F007C117D /* Debug */ = { 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; 333 | ENABLE_STRICT_OBJC_MSGSEND = YES; 334 | ENABLE_TESTABILITY = YES; 335 | GCC_C_LANGUAGE_STANDARD = gnu99; 336 | GCC_DYNAMIC_NO_PIC = NO; 337 | GCC_NO_COMMON_BLOCKS = YES; 338 | GCC_OPTIMIZATION_LEVEL = 0; 339 | GCC_PREPROCESSOR_DEFINITIONS = ( 340 | "DEBUG=1", 341 | "$(inherited)", 342 | ); 343 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 344 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 345 | GCC_WARN_UNDECLARED_SELECTOR = YES; 346 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 347 | GCC_WARN_UNUSED_FUNCTION = YES; 348 | GCC_WARN_UNUSED_VARIABLE = YES; 349 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 350 | MTL_ENABLE_DEBUG_INFO = YES; 351 | ONLY_ACTIVE_ARCH = YES; 352 | SDKROOT = iphoneos; 353 | TARGETED_DEVICE_FAMILY = "1,2"; 354 | }; 355 | name = Debug; 356 | }; 357 | 97C147041CF9000F007C117D /* Release */ = { 358 | isa = XCBuildConfiguration; 359 | buildSettings = { 360 | ALWAYS_SEARCH_USER_PATHS = NO; 361 | CLANG_ANALYZER_NONNULL = YES; 362 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 363 | CLANG_CXX_LIBRARY = "libc++"; 364 | CLANG_ENABLE_MODULES = YES; 365 | CLANG_ENABLE_OBJC_ARC = YES; 366 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 367 | CLANG_WARN_BOOL_CONVERSION = YES; 368 | CLANG_WARN_COMMA = YES; 369 | CLANG_WARN_CONSTANT_CONVERSION = YES; 370 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 371 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 372 | CLANG_WARN_EMPTY_BODY = YES; 373 | CLANG_WARN_ENUM_CONVERSION = YES; 374 | CLANG_WARN_INFINITE_RECURSION = YES; 375 | CLANG_WARN_INT_CONVERSION = YES; 376 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 377 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 378 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 379 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 380 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 381 | CLANG_WARN_STRICT_PROTOTYPES = YES; 382 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 383 | CLANG_WARN_UNREACHABLE_CODE = YES; 384 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 385 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 386 | COPY_PHASE_STRIP = NO; 387 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 388 | ENABLE_NS_ASSERTIONS = NO; 389 | ENABLE_STRICT_OBJC_MSGSEND = YES; 390 | GCC_C_LANGUAGE_STANDARD = gnu99; 391 | GCC_NO_COMMON_BLOCKS = YES; 392 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 393 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 394 | GCC_WARN_UNDECLARED_SELECTOR = YES; 395 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 396 | GCC_WARN_UNUSED_FUNCTION = YES; 397 | GCC_WARN_UNUSED_VARIABLE = YES; 398 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 399 | MTL_ENABLE_DEBUG_INFO = NO; 400 | SDKROOT = iphoneos; 401 | SUPPORTED_PLATFORMS = iphoneos; 402 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 403 | TARGETED_DEVICE_FAMILY = "1,2"; 404 | VALIDATE_PRODUCT = YES; 405 | }; 406 | name = Release; 407 | }; 408 | 97C147061CF9000F007C117D /* Debug */ = { 409 | isa = XCBuildConfiguration; 410 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 411 | buildSettings = { 412 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 413 | CLANG_ENABLE_MODULES = YES; 414 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 415 | ENABLE_BITCODE = NO; 416 | INFOPLIST_FILE = Runner/Info.plist; 417 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 418 | PRODUCT_BUNDLE_IDENTIFIER = com.koffeecuptales.taskit; 419 | PRODUCT_NAME = "$(TARGET_NAME)"; 420 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 421 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 422 | SWIFT_VERSION = 5.0; 423 | VERSIONING_SYSTEM = "apple-generic"; 424 | }; 425 | name = Debug; 426 | }; 427 | 97C147071CF9000F007C117D /* Release */ = { 428 | isa = XCBuildConfiguration; 429 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 430 | buildSettings = { 431 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 432 | CLANG_ENABLE_MODULES = YES; 433 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 434 | ENABLE_BITCODE = NO; 435 | INFOPLIST_FILE = Runner/Info.plist; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | PRODUCT_BUNDLE_IDENTIFIER = com.koffeecuptales.taskit; 438 | PRODUCT_NAME = "$(TARGET_NAME)"; 439 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; 440 | SWIFT_VERSION = 5.0; 441 | VERSIONING_SYSTEM = "apple-generic"; 442 | }; 443 | name = Release; 444 | }; 445 | /* End XCBuildConfiguration section */ 446 | 447 | /* Begin XCConfigurationList section */ 448 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 449 | isa = XCConfigurationList; 450 | buildConfigurations = ( 451 | 97C147031CF9000F007C117D /* Debug */, 452 | 97C147041CF9000F007C117D /* Release */, 453 | 249021D3217E4FDB00AE95B9 /* Profile */, 454 | ); 455 | defaultConfigurationIsVisible = 0; 456 | defaultConfigurationName = Release; 457 | }; 458 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 459 | isa = XCConfigurationList; 460 | buildConfigurations = ( 461 | 97C147061CF9000F007C117D /* Debug */, 462 | 97C147071CF9000F007C117D /* Release */, 463 | 249021D4217E4FDB00AE95B9 /* Profile */, 464 | ); 465 | defaultConfigurationIsVisible = 0; 466 | defaultConfigurationName = Release; 467 | }; 468 | /* End XCConfigurationList section */ 469 | }; 470 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 471 | } 472 | -------------------------------------------------------------------------------- /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 | 8 | -------------------------------------------------------------------------------- /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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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 | taskit 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/helpers/database_helper.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | import 'dart:io'; 3 | import 'package:path_provider/path_provider.dart'; 4 | import 'package:sqflite/sqflite.dart'; 5 | import 'package:taskit/models/task_model.dart'; 6 | 7 | class DatabaseHelper { 8 | 9 | DatabaseHelper._privateConstructor(); 10 | static final DatabaseHelper instance = DatabaseHelper._privateConstructor(); 11 | 12 | static late Database _db; 13 | 14 | String tasksTable = 'task_table'; 15 | String colId = 'id'; 16 | String colTitle = 'title'; 17 | String colDate = 'date'; 18 | String colPriority = 'priority'; 19 | String colStatus = 'status'; 20 | 21 | Future get db async { 22 | _db = await _initDb(); 23 | return _db; 24 | } 25 | 26 | Future _initDb() async { 27 | Directory dir = await getApplicationDocumentsDirectory(); 28 | String path = dir.path + 'taskit.db'; 29 | print(path); 30 | final todoListDb = 31 | await openDatabase(path, version: 1, onCreate: _createDb); 32 | return todoListDb; 33 | } 34 | 35 | void _createDb(Database db, int version) async { 36 | await db.execute( 37 | 'CREATE TABLE $tasksTable ($colId INTEGER PRIMARY KEY AUTOINCREMENT,$colTitle TEXT, $colDate TEXT, $colPriority TEXT, $colStatus INTEGER)'); 38 | } 39 | 40 | Future>> getMapTaskList() async { 41 | Database db = await this.db; 42 | final List> result = await db.query(tasksTable); 43 | return result; 44 | } 45 | 46 | Future> getTaskList() async { 47 | final List> taskMapList = await getMapTaskList(); 48 | final List taskList = []; 49 | taskMapList.forEach((taskMap) { 50 | taskList.add(Task.fromMap(taskMap)); 51 | }); 52 | taskList.sort((taskA, taskB) => taskA.date!.compareTo(taskB.date!)); 53 | return taskList; 54 | } 55 | 56 | Future insertTask(Task task) async { 57 | Database db = await this.db; 58 | final int result = await db.insert(tasksTable, task.toMap()); 59 | return result; 60 | } 61 | 62 | Future updateTask(Task task) async { 63 | Database db = await this.db; 64 | final int result = await db.update(tasksTable, task.toMap(), 65 | where: '$colId = ?', whereArgs: [task.id]); 66 | return result; 67 | } 68 | 69 | Future deleteTask(int? id) async { 70 | Database db = await this.db; 71 | final int result = 72 | await db.delete(tasksTable, where: '$colId = ?', whereArgs: [id]); 73 | return result; 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:taskit/screens/login_screen.dart'; 3 | import 'package:taskit/screens/todo_list_screen.dart'; 4 | 5 | void main() { 6 | runApp(MyApp()); 7 | } 8 | 9 | class MyApp extends StatelessWidget { 10 | // This widget is the root of your application. 11 | @override 12 | Widget build(BuildContext context) { 13 | return MaterialApp( 14 | debugShowCheckedModeBanner: false, 15 | title: 'TaskId : Not Just another TodoApp', 16 | theme: ThemeData( 17 | primarySwatch: Colors.orange, 18 | ), 19 | home: Auth(), 20 | ); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /lib/models/task_model.dart: -------------------------------------------------------------------------------- 1 | class Task { 2 | int? id; 3 | String? title; 4 | DateTime? date; 5 | String? priority; 6 | int? status; 7 | 8 | Task({this.title,this.date, this.priority, this.status}); 9 | 10 | Task.withId({this.id, this.title, this.date, this.priority, this.status}); 11 | 12 | Map toMap() { 13 | final map = Map(); 14 | map['id'] = id; 15 | map['title'] = title; 16 | map['date'] = date!.toIso8601String(); 17 | map['priority'] = priority; 18 | map['status'] = status; 19 | return map; 20 | } 21 | 22 | factory Task.fromMap(Map map) { 23 | return Task.withId( 24 | id: map['id'], 25 | title: map['title'], 26 | date: DateTime.parse(map['date']), 27 | priority: map['priority'], 28 | status: map['status']); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /lib/screens/add_task_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:intl/intl.dart'; 3 | import 'package:taskit/helpers/database_helper.dart'; 4 | import 'package:taskit/models/task_model.dart'; 5 | 6 | class AddTaskScreen extends StatefulWidget { 7 | final Function? updateTaskList; 8 | final Task? task; 9 | 10 | AddTaskScreen({this.updateTaskList, this.task}); 11 | 12 | @override 13 | _AddTaskScreenState createState() => _AddTaskScreenState(); 14 | } 15 | 16 | class _AddTaskScreenState extends State { 17 | final _formKey = GlobalKey(); 18 | 19 | String? _title = ""; 20 | String? _priority = "Low"; 21 | DateTime? _date = DateTime.now(); 22 | TextEditingController _dateController = TextEditingController(); 23 | final DateFormat _dateFormatter = DateFormat('MMM dd, yyyy'); 24 | final List _priorities = ["Low", "Medium", "High"]; 25 | 26 | _handleDatePicker() async { 27 | final DateTime? date = await showDatePicker( 28 | context: context, 29 | initialDate: _date!, 30 | firstDate: DateTime(2000), 31 | lastDate: DateTime(2050)); 32 | if (date != null && date != _date) { 33 | setState(() { 34 | _date = date; 35 | }); 36 | _dateController.text = _dateFormatter.format(date); 37 | } 38 | } 39 | 40 | _submit() { 41 | if (_formKey.currentState!.validate()) { 42 | _formKey.currentState!.save(); 43 | print('$_title, $_priority, $_date'); 44 | 45 | // Insert Task to Users Database 46 | Task task = Task(title: _title, date: _date, priority: _priority); 47 | if (widget.task == null) { 48 | task.status = 0; 49 | DatabaseHelper.instance.insertTask(task); 50 | } else { 51 | // Update Task to Users Database 52 | task.id = widget.task!.id; 53 | task.status = widget.task!.status; 54 | DatabaseHelper.instance.updateTask(task); 55 | } 56 | 57 | widget.updateTaskList!(); 58 | Navigator.pop(context); 59 | } 60 | } 61 | 62 | _delete() { 63 | DatabaseHelper.instance.deleteTask(widget.task!.id); 64 | widget.updateTaskList!(); 65 | Navigator.pop(context); 66 | } 67 | 68 | @override 69 | void initState() { 70 | super.initState(); 71 | _dateController.text = _dateFormatter.format(_date!); 72 | 73 | if (widget.task != null) { 74 | _title = widget.task!.title; 75 | _priority = widget.task!.priority; 76 | _date = widget.task!.date; 77 | } 78 | } 79 | 80 | @override 81 | void dispose() { 82 | _dateController.dispose(); 83 | super.dispose(); 84 | } 85 | 86 | @override 87 | Widget build(BuildContext context) { 88 | return Scaffold( 89 | body: GestureDetector( 90 | onTap: () => FocusScope.of(context).unfocus(), 91 | child: SingleChildScrollView( 92 | child: Container( 93 | padding: EdgeInsets.symmetric(horizontal: 40.0, vertical: 80.0), 94 | child: Column( 95 | crossAxisAlignment: CrossAxisAlignment.start, 96 | children: [ 97 | GestureDetector( 98 | onTap: () => Navigator.pop(context), 99 | child: Icon( 100 | Icons.arrow_back_ios, 101 | size: 30, 102 | color: Theme.of(context).primaryColor, 103 | ), 104 | ), 105 | SizedBox( 106 | height: 20.0, 107 | ), 108 | Text( 109 | widget.task == null ? 'Add Task' : 'Update Task', 110 | style: TextStyle( 111 | fontFamily: 'ProximaNova', 112 | color: Colors.black, 113 | fontWeight: FontWeight.w800, 114 | fontSize: 40.0), 115 | ), 116 | SizedBox( 117 | height: 10.0, 118 | ), 119 | Form( 120 | key: _formKey, 121 | child: Column( 122 | children: [ 123 | Padding( 124 | padding: const EdgeInsets.symmetric(vertical: 20), 125 | child: TextFormField( 126 | style: TextStyle(fontSize: 18), 127 | decoration: InputDecoration( 128 | labelText: 'Title', 129 | labelStyle: TextStyle( 130 | fontSize: 18, 131 | fontFamily: 'ProximaNova', 132 | color: Colors.black, 133 | fontWeight: FontWeight.w800, 134 | ), 135 | border: OutlineInputBorder( 136 | borderRadius: BorderRadius.circular(10.0))), 137 | validator: (input) => input!.trim().isEmpty 138 | ? 'Please Enter a Task Title' 139 | : null, 140 | onSaved: (input) => _title = input, 141 | initialValue: _title, 142 | ), 143 | ), 144 | Padding( 145 | padding: const EdgeInsets.symmetric(vertical: 20), 146 | child: TextFormField( 147 | readOnly: true, 148 | controller: _dateController, 149 | style: TextStyle(fontSize: 18), 150 | onTap: _handleDatePicker, 151 | decoration: InputDecoration( 152 | labelText: 'Date', 153 | labelStyle: TextStyle( 154 | fontSize: 18, 155 | fontFamily: 'ProximaNova', 156 | color: Colors.black, 157 | fontWeight: FontWeight.w800, 158 | ), 159 | border: OutlineInputBorder( 160 | borderRadius: BorderRadius.circular(10.0))), 161 | ), 162 | ), 163 | Padding( 164 | padding: const EdgeInsets.symmetric(vertical: 20), 165 | child: DropdownButtonFormField( 166 | isDense: true, 167 | icon: Icon(Icons.arrow_drop_down_circle), 168 | iconSize: 22.0, 169 | iconEnabledColor: Theme.of(context).primaryColor, 170 | style: TextStyle(fontSize: 18), 171 | decoration: InputDecoration( 172 | labelText: 'Priority', 173 | labelStyle: TextStyle( 174 | fontSize: 18, 175 | fontFamily: 'ProximaNova', 176 | color: Colors.black, 177 | fontWeight: FontWeight.w800, 178 | ), 179 | border: OutlineInputBorder( 180 | borderRadius: BorderRadius.circular(10.0))), 181 | validator: (dynamic input) => 182 | input.toString().trim().isEmpty 183 | ? 'Please Select a Priority Level' 184 | : null, 185 | // onSaved: (input) => _priority = input.toString(), 186 | items: _priorities.map((String priority) { 187 | return DropdownMenuItem( 188 | value: priority, 189 | child: new Text( 190 | priority, 191 | style: TextStyle( 192 | fontFamily: 'ProximaNova', 193 | color: Colors.black, 194 | fontWeight: FontWeight.w800, 195 | fontSize: 18.0), 196 | )); 197 | }).toList(), 198 | onChanged: (dynamic newValue) { 199 | print(newValue.runtimeType); 200 | setState(() { 201 | _priority = newValue.toString(); 202 | }); 203 | }, 204 | // value : _priority 205 | ), 206 | ), 207 | Container( 208 | margin: EdgeInsets.symmetric(vertical: 20.0), 209 | height: 60.0, 210 | width: double.infinity, 211 | decoration: BoxDecoration( 212 | color: Theme.of(context).primaryColor, 213 | borderRadius: BorderRadius.circular(30.0)), 214 | child: TextButton( 215 | onPressed: _submit, 216 | child: Text( 217 | widget.task == null ? 'Add' : 'Update', 218 | style: TextStyle( 219 | color: Colors.white, 220 | fontSize: 20.0, 221 | fontFamily: 'ProximaNova', 222 | fontWeight: FontWeight.w800, 223 | ), 224 | ), 225 | ), 226 | ), 227 | widget.task != null 228 | ? Container( 229 | margin: EdgeInsets.symmetric(vertical: 20.0), 230 | height: 60.0, 231 | width: double.infinity, 232 | decoration: BoxDecoration( 233 | color: Theme.of(context).primaryColor, 234 | borderRadius: BorderRadius.circular(30.0)), 235 | child: TextButton( 236 | onPressed: _delete, 237 | child: Text( 238 | 'Delete', 239 | style: TextStyle( 240 | color: Colors.white, 241 | fontSize: 20.0, 242 | fontFamily: 'ProximaNova', 243 | fontWeight: FontWeight.w800, 244 | ), 245 | ), 246 | ), 247 | ) 248 | : SizedBox.shrink(), 249 | ], 250 | ), 251 | ) 252 | ], 253 | ), 254 | ), 255 | ), 256 | ), 257 | ); 258 | } 259 | } 260 | -------------------------------------------------------------------------------- /lib/screens/login_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class Auth extends StatefulWidget { 4 | const Auth({Key? key}) : super(key: key); 5 | 6 | @override 7 | _AuthState createState() => _AuthState(); 8 | } 9 | 10 | class _AuthState extends State { 11 | final formKey = new GlobalKey(); 12 | 13 | late String email, password; 14 | 15 | Color greenColor = Color(0xFF00AF19); 16 | 17 | //To check fields during submit 18 | checkFields() { 19 | final form = formKey.currentState; 20 | if (form!.validate()) { 21 | form.save(); 22 | return true; 23 | } 24 | return false; 25 | } 26 | 27 | //To Validate email 28 | String validateEmail(String value) { 29 | String pattern = 30 | r'^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$'; 31 | RegExp regex = new RegExp(pattern); 32 | if (!regex.hasMatch(value)) 33 | return 'Enter Valid Email'; 34 | else 35 | return 'Pass'; 36 | } 37 | 38 | @override 39 | Widget build(BuildContext context) { 40 | return Scaffold( 41 | body: Container( 42 | height: MediaQuery.of(context).size.height, 43 | width: MediaQuery.of(context).size.width, 44 | child: Form( 45 | key: formKey, 46 | child: _buildLoginForm(), 47 | ), 48 | ), 49 | ); 50 | } 51 | 52 | _buildLoginForm() { 53 | return Padding( 54 | padding: const EdgeInsets.only(left: 25.0, right: 25.0), 55 | child: ListView( 56 | children: [ 57 | SizedBox( 58 | height: 75.0, 59 | ), 60 | Container( 61 | height: 125.0, 62 | width: 200.0, 63 | child: Stack( 64 | children: [ 65 | Text( 66 | 'TaskIt', 67 | style: TextStyle( 68 | fontFamily: 'ProximaNova', 69 | fontSize: 60.0, 70 | ), 71 | ), 72 | Positioned( 73 | top: 63.0, 74 | left: 10.0, 75 | child: Text( 76 | 'Plan as you go along!', 77 | style: TextStyle( 78 | fontSize: 20.0, 79 | fontStyle: FontStyle.italic, 80 | fontFamily: 'ProximaNova', 81 | fontWeight: FontWeight.w800, 82 | color: Colors.grey), 83 | ), 84 | ), 85 | // Positioned( 86 | // top: 80.0, 87 | // left: 190.0, 88 | // child: Container( 89 | // height: 10.0, 90 | // width: 10.0, 91 | // decoration: BoxDecoration( 92 | // shape: BoxShape.circle, 93 | // color: Colors.green 94 | // ), 95 | // ), 96 | // ) 97 | ], 98 | ), 99 | ), 100 | SizedBox( 101 | height: 25.0, 102 | ), 103 | TextFormField( 104 | decoration: InputDecoration( 105 | labelText: 'EMAIL', 106 | labelStyle: TextStyle( 107 | fontSize: 12.0, 108 | color: Colors.grey.withOpacity(0.5), 109 | fontFamily: 'ProximaNova', 110 | fontWeight: FontWeight.w800, 111 | ), 112 | focusedBorder: UnderlineInputBorder( 113 | borderSide: BorderSide(color: Colors.orange), 114 | )), 115 | onChanged: (value) { 116 | this.email = value; 117 | }, 118 | validator: (value) => value!.isEmpty ? 'Email is required' : null, 119 | ), 120 | TextFormField( 121 | decoration: InputDecoration( 122 | labelText: 'PASSWORD', 123 | labelStyle: TextStyle( 124 | fontSize: 12.0, 125 | color: Colors.grey.withOpacity(0.5), 126 | fontFamily: 'ProximaNova', 127 | fontWeight: FontWeight.w800, 128 | ), 129 | focusedBorder: UnderlineInputBorder( 130 | borderSide: BorderSide(color: greenColor), 131 | )), 132 | obscureText: true, 133 | onChanged: (value) { 134 | this.password = value; 135 | }, 136 | validator: (value) => 137 | value!.isEmpty ? 'Password is required' : null), 138 | SizedBox(height: 5.0), 139 | GestureDetector( 140 | onTap: () { 141 | Navigator.of(context) 142 | .push(MaterialPageRoute(builder: (context) => Container())); 143 | }, 144 | child: Container( 145 | alignment: Alignment(1.0, 0.0), 146 | padding: EdgeInsets.only(top: 15.0, left: 20.0), 147 | child: InkWell( 148 | child: Text('Forgot Password', 149 | style: TextStyle( 150 | color: greenColor, 151 | fontSize: 11.0, 152 | decoration: TextDecoration.underline, 153 | fontFamily: 'ProximaNova', 154 | fontWeight: FontWeight.w800, 155 | ))))), 156 | SizedBox(height: 50.0), 157 | GestureDetector( 158 | onTap: () { 159 | if (checkFields()) {} 160 | }, 161 | child: Container( 162 | height: 50.0, 163 | child: Material( 164 | borderRadius: BorderRadius.circular(25.0), 165 | // shadowColor: Colors.greenAccent, 166 | color: greenColor, 167 | elevation: 4.0, 168 | child: Center( 169 | child: Text('LOGIN', 170 | style: TextStyle( 171 | color: Colors.white, 172 | fontFamily: 'ProximaNova', 173 | fontWeight: FontWeight.w800, 174 | ))))), 175 | ), 176 | ], 177 | ), 178 | ); 179 | } 180 | } 181 | -------------------------------------------------------------------------------- /lib/screens/todo_list_screen.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/cupertino.dart'; 2 | import 'package:flutter/material.dart'; 3 | import 'package:intl/intl.dart'; 4 | import 'package:taskit/helpers/database_helper.dart'; 5 | import 'package:taskit/models/task_model.dart'; 6 | import 'package:taskit/screens/add_task_screen.dart'; 7 | 8 | class TodoListScreen extends StatefulWidget { 9 | @override 10 | _TodoListScreenState createState() => _TodoListScreenState(); 11 | } 12 | 13 | class _TodoListScreenState extends State { 14 | Future>? _taskList; 15 | final DateFormat _dateFormatter = DateFormat('MMM dd, yyyy'); 16 | 17 | @override 18 | void initState() { 19 | super.initState(); 20 | _updateTaskList(); 21 | } 22 | 23 | _updateTaskList() { 24 | setState(() { 25 | _taskList = DatabaseHelper.instance.getTaskList(); 26 | }); 27 | } 28 | 29 | Widget _buildTask(Task task) { 30 | return Padding( 31 | padding: EdgeInsets.symmetric(horizontal: 25), 32 | child: Column( 33 | children: [ 34 | ListTile( 35 | title: Text( 36 | task.title!, 37 | style: TextStyle( 38 | fontFamily: 'ProximaNova', 39 | fontWeight: FontWeight.w800, 40 | fontSize: 18, 41 | decoration: task.status == 0 42 | ? TextDecoration.none 43 | : TextDecoration.lineThrough), 44 | ), 45 | subtitle: Text( 46 | '${_dateFormatter.format(task.date!)} * ${task.priority}', 47 | style: TextStyle( 48 | fontFamily: 'ProximaNova', 49 | fontWeight: FontWeight.w800, 50 | fontSize: 15, 51 | decoration: task.status == 0 52 | ? TextDecoration.none 53 | : TextDecoration.lineThrough), 54 | ), 55 | trailing: Checkbox( 56 | onChanged: (value) { 57 | task.status = value! ? 1 : 0; 58 | DatabaseHelper.instance.updateTask(task); 59 | _updateTaskList(); 60 | }, 61 | activeColor: Theme.of(context).primaryColor, 62 | value: task.status == 1 ? true : false, 63 | ), 64 | onTap: () => Navigator.push( 65 | context, 66 | MaterialPageRoute( 67 | builder: (_) => AddTaskScreen( 68 | updateTaskList: _updateTaskList, task: task))), 69 | ), 70 | Divider() 71 | ], 72 | ), 73 | ); 74 | } 75 | 76 | @override 77 | Widget build(BuildContext context) { 78 | return Scaffold( 79 | drawer: Drawer( 80 | child: Column( 81 | children: [Text('Option 1'), Text('Option 2'), Text('Option 3')], 82 | ), 83 | ), 84 | appBar: AppBar( 85 | title: Text('TaskIt', 86 | style: TextStyle( 87 | fontFamily: 'ProximaNova', 88 | fontWeight: FontWeight.w800, 89 | )), 90 | ), 91 | floatingActionButton: FloatingActionButton( 92 | backgroundColor: Theme.of(context).primaryColor, 93 | onPressed: () => { 94 | Navigator.push( 95 | context, 96 | MaterialPageRoute( 97 | builder: (_) => AddTaskScreen(updateTaskList: _updateTaskList), 98 | ), 99 | ) 100 | }, 101 | child: Icon(Icons.add), 102 | ), 103 | body: FutureBuilder( 104 | future: _taskList, 105 | builder: (context, snapshot) { 106 | if (!snapshot.hasData) { 107 | return Center( 108 | child: CircularProgressIndicator(), 109 | ); 110 | } 111 | 112 | final int? completedTaskCount = (snapshot.data as List) 113 | .where((Task task) => task.status == 1) 114 | .toList() 115 | .length; 116 | 117 | return ListView.builder( 118 | padding: EdgeInsets.symmetric(vertical: 60.0), 119 | itemCount: 1 + (snapshot.data as List).length, 120 | itemBuilder: (BuildContext context, int index) { 121 | if (index == 0) { 122 | return Padding( 123 | padding: const EdgeInsets.symmetric( 124 | vertical: 20.0, horizontal: 40.0), 125 | child: Column( 126 | crossAxisAlignment: CrossAxisAlignment.start, 127 | children: [ 128 | Text( 129 | 'My Tasks', 130 | style: TextStyle( 131 | fontFamily: 'ProximaNova', 132 | color: Colors.black, 133 | fontWeight: FontWeight.w800, 134 | fontSize: 30, 135 | ), 136 | ), 137 | SizedBox( 138 | height: 10.0, 139 | ), 140 | Text( 141 | '$completedTaskCount of ${(snapshot.data as List).length}', 142 | style: TextStyle( 143 | fontFamily: 'ProximaNova', 144 | color: Colors.grey, 145 | fontSize: 15.0, 146 | fontWeight: FontWeight.w600), 147 | ) 148 | ], 149 | ), 150 | ); 151 | } 152 | return _buildTask((snapshot.data as List)[index - 1]); 153 | }, 154 | ); 155 | }, 156 | ), 157 | ); 158 | } 159 | } 160 | -------------------------------------------------------------------------------- /privacyPolicy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |

Privacy Policy

4 |

Koffeecuptales built the TaskIt app as a open source app. This SERVICE is provided by Individual 5 | at no cost and is intended 6 | for use as is.

7 |

This page is used to inform website visitors regarding our policies with the collection, use, and 8 | disclosure of Personal Information if anyone decided to use [my|our] Service.

9 |

If you choose to use our Service, then you agree to the collection and use of information in 10 | relation with this policy. The Personal Information that we collect are used for providing and 11 | improving the Service. We will not use or share your information with anyone except as described 12 | in this Privacy Policy.

13 |

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, 14 | which is accessible at TaskIt, unless otherwise defined in this Privacy Policy.

15 | 16 |

Information Collection and Use

17 |

For a better experience while using our Service, we may require you to provide us with certain 18 | personally identifiable information. 19 | The information that we request is retained on your device and is not 20 | collected by us in any way

21 |

The app does use third party services that may collect information used to identify you [eg 22 | Google Services]. 23 | 24 |

Log Data

25 |

We want to inform you that whenever you use [my|our] Service, in case of an error in the app we 26 | collect 27 | data and information (through third party products) on your phone called Log Data. This Log Data 28 | may include information such as your devices’s Internet Protocol (“IP”) address, device name, 29 | operating system version, configuration of the app when utilising [my|our] Service, the time and 30 | date 31 | of your use of the Service, and other statistics.

32 | 33 |

Cookies

34 |

Cookies are files with small amount of data that is commonly used an anonymous unique identifier. 35 | These are sent to your browser from the website that you visit and are stored on your devices’s 36 | internal memory.

37 |

>!-- Check if this is true for your app, if unsure, just assume that you do use cookies and 38 | modify this next line -->This Services does not uses these “cookies” explicitly. However, the 39 | app may use third party code 40 | and libraries that use “cookies” to collection information and to improve their services. You 41 | have the option to either accept or refuse these cookies, and know when a cookie is being sent 42 | to your device. If you choose to refuse our cookies, you may not be able to use some portions of 43 | this Service.

44 | 45 |

Service Providers

46 |

We] may employ third-party companies and individuals due to the following reasons:

47 |
    48 |
  • To facilitate our Service;
  • 49 |
  • To provide the Service on our behalf;
  • 50 |
  • To perform Service-related services; or
  • 51 |
  • To assist us in analyzing how our Service is used.
  • 52 |
53 |

[I|We] want to inform users of this Service that these third parties have access to your Personal 54 | Information. The reason is to perform the tasks assigned to them on our behalf. However, they 55 | are obligated not to disclose or use the information for any other purpose.

56 | 57 |

Security

58 |

[I|We value your trust in providing us your Personal Information, thus we are striving to use 59 | commercially acceptable means of protecting it. But remember that no method of transmission over 60 | the internet, or method of electronic storage is 100% secure and reliable, and we cannot 61 | guarantee its absolute security.

62 | 63 |

Links to Other Sites

64 |

This Service may contain links to other sites. If you click on a third-party link, you will be 65 | directed to that site. Note that these external sites are not operated by [me|us]. Therefore, I 66 | strongly advise you to review the Privacy Policy of these websites. I have no control over, and 67 | assume no responsibility for the content, privacy policies, or practices of any third-party 68 | sites or services.

69 | 70 |

Children’s Privacy

71 |

This Services do not address anyone under the age of 13. We do not knowingly collect personal 72 | identifiable information from children under 13. In the case we discover that a child under 13 73 | has provided us with personal information, we immediately delete this from our servers. If you 74 | are a parent or guardian and you are aware that your child has provided us with personal 75 | information, please contact us so that we will be able to do necessary actions.

76 | 77 |

Changes to This Privacy Policy

78 |

[I|We] may update our Privacy Policy from time to time. Thus, you are advised to review this page 79 | periodically for any changes. We will notify you of any changes by posting the new Privacy 80 | Policy 81 | on this page. These changes are effective immediately, after they are posted on this page.

82 | 83 |

Contact Us

84 |

If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact 85 | us at prince.balakrishna@gmail.com

86 | 87 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://dart.dev/tools/pub/glossary#lockfile 3 | packages: 4 | archive: 5 | dependency: transitive 6 | description: 7 | name: archive 8 | url: "https://pub.dartlang.org" 9 | source: hosted 10 | version: "2.0.13" 11 | args: 12 | dependency: transitive 13 | description: 14 | name: args 15 | url: "https://pub.dartlang.org" 16 | source: hosted 17 | version: "1.6.0" 18 | async: 19 | dependency: transitive 20 | description: 21 | name: async 22 | url: "https://pub.dartlang.org" 23 | source: hosted 24 | version: "2.8.2" 25 | boolean_selector: 26 | dependency: transitive 27 | description: 28 | name: boolean_selector 29 | url: "https://pub.dartlang.org" 30 | source: hosted 31 | version: "2.1.0" 32 | characters: 33 | dependency: transitive 34 | description: 35 | name: characters 36 | url: "https://pub.dartlang.org" 37 | source: hosted 38 | version: "1.1.0" 39 | charcode: 40 | dependency: transitive 41 | description: 42 | name: charcode 43 | url: "https://pub.dartlang.org" 44 | source: hosted 45 | version: "1.3.1" 46 | clock: 47 | dependency: transitive 48 | description: 49 | name: clock 50 | url: "https://pub.dartlang.org" 51 | source: hosted 52 | version: "1.1.0" 53 | collection: 54 | dependency: transitive 55 | description: 56 | name: collection 57 | url: "https://pub.dartlang.org" 58 | source: hosted 59 | version: "1.15.0" 60 | convert: 61 | dependency: transitive 62 | description: 63 | name: convert 64 | url: "https://pub.dartlang.org" 65 | source: hosted 66 | version: "2.1.1" 67 | crypto: 68 | dependency: transitive 69 | description: 70 | name: crypto 71 | url: "https://pub.dartlang.org" 72 | source: hosted 73 | version: "2.1.5" 74 | cupertino_icons: 75 | dependency: "direct main" 76 | description: 77 | name: cupertino_icons 78 | url: "https://pub.dartlang.org" 79 | source: hosted 80 | version: "1.0.3" 81 | fake_async: 82 | dependency: transitive 83 | description: 84 | name: fake_async 85 | url: "https://pub.dartlang.org" 86 | source: hosted 87 | version: "1.2.0" 88 | ffi: 89 | dependency: transitive 90 | description: 91 | name: ffi 92 | url: "https://pub.dartlang.org" 93 | source: hosted 94 | version: "1.1.2" 95 | file: 96 | dependency: transitive 97 | description: 98 | name: file 99 | url: "https://pub.dartlang.org" 100 | source: hosted 101 | version: "6.1.1" 102 | flutter: 103 | dependency: "direct main" 104 | description: flutter 105 | source: sdk 106 | version: "0.0.0" 107 | flutter_launcher_icons: 108 | dependency: "direct dev" 109 | description: 110 | name: flutter_launcher_icons 111 | url: "https://pub.dartlang.org" 112 | source: hosted 113 | version: "0.8.1" 114 | flutter_test: 115 | dependency: "direct dev" 116 | description: flutter 117 | source: sdk 118 | version: "0.0.0" 119 | image: 120 | dependency: transitive 121 | description: 122 | name: image 123 | url: "https://pub.dartlang.org" 124 | source: hosted 125 | version: "2.1.19" 126 | intl: 127 | dependency: "direct main" 128 | description: 129 | name: intl 130 | url: "https://pub.dartlang.org" 131 | source: hosted 132 | version: "0.17.0" 133 | matcher: 134 | dependency: transitive 135 | description: 136 | name: matcher 137 | url: "https://pub.dartlang.org" 138 | source: hosted 139 | version: "0.12.11" 140 | meta: 141 | dependency: transitive 142 | description: 143 | name: meta 144 | url: "https://pub.dartlang.org" 145 | source: hosted 146 | version: "1.7.0" 147 | path: 148 | dependency: transitive 149 | description: 150 | name: path 151 | url: "https://pub.dartlang.org" 152 | source: hosted 153 | version: "1.8.0" 154 | path_provider: 155 | dependency: "direct main" 156 | description: 157 | name: path_provider 158 | url: "https://pub.dartlang.org" 159 | source: hosted 160 | version: "2.0.2" 161 | path_provider_linux: 162 | dependency: transitive 163 | description: 164 | name: path_provider_linux 165 | url: "https://pub.dartlang.org" 166 | source: hosted 167 | version: "2.0.0" 168 | path_provider_macos: 169 | dependency: transitive 170 | description: 171 | name: path_provider_macos 172 | url: "https://pub.dartlang.org" 173 | source: hosted 174 | version: "2.0.0" 175 | path_provider_platform_interface: 176 | dependency: transitive 177 | description: 178 | name: path_provider_platform_interface 179 | url: "https://pub.dartlang.org" 180 | source: hosted 181 | version: "2.0.1" 182 | path_provider_windows: 183 | dependency: transitive 184 | description: 185 | name: path_provider_windows 186 | url: "https://pub.dartlang.org" 187 | source: hosted 188 | version: "2.0.1" 189 | petitparser: 190 | dependency: transitive 191 | description: 192 | name: petitparser 193 | url: "https://pub.dartlang.org" 194 | source: hosted 195 | version: "3.1.0" 196 | platform: 197 | dependency: transitive 198 | description: 199 | name: platform 200 | url: "https://pub.dartlang.org" 201 | source: hosted 202 | version: "3.0.0" 203 | plugin_platform_interface: 204 | dependency: transitive 205 | description: 206 | name: plugin_platform_interface 207 | url: "https://pub.dartlang.org" 208 | source: hosted 209 | version: "2.0.0" 210 | process: 211 | dependency: transitive 212 | description: 213 | name: process 214 | url: "https://pub.dartlang.org" 215 | source: hosted 216 | version: "4.2.1" 217 | sky_engine: 218 | dependency: transitive 219 | description: flutter 220 | source: sdk 221 | version: "0.0.99" 222 | source_span: 223 | dependency: transitive 224 | description: 225 | name: source_span 226 | url: "https://pub.dartlang.org" 227 | source: hosted 228 | version: "1.8.1" 229 | sqflite: 230 | dependency: "direct main" 231 | description: 232 | name: sqflite 233 | url: "https://pub.dartlang.org" 234 | source: hosted 235 | version: "2.0.0+3" 236 | sqflite_common: 237 | dependency: transitive 238 | description: 239 | name: sqflite_common 240 | url: "https://pub.dartlang.org" 241 | source: hosted 242 | version: "2.0.0+2" 243 | stack_trace: 244 | dependency: transitive 245 | description: 246 | name: stack_trace 247 | url: "https://pub.dartlang.org" 248 | source: hosted 249 | version: "1.10.0" 250 | stream_channel: 251 | dependency: transitive 252 | description: 253 | name: stream_channel 254 | url: "https://pub.dartlang.org" 255 | source: hosted 256 | version: "2.1.0" 257 | string_scanner: 258 | dependency: transitive 259 | description: 260 | name: string_scanner 261 | url: "https://pub.dartlang.org" 262 | source: hosted 263 | version: "1.1.0" 264 | synchronized: 265 | dependency: transitive 266 | description: 267 | name: synchronized 268 | url: "https://pub.dartlang.org" 269 | source: hosted 270 | version: "3.0.0" 271 | term_glyph: 272 | dependency: transitive 273 | description: 274 | name: term_glyph 275 | url: "https://pub.dartlang.org" 276 | source: hosted 277 | version: "1.2.0" 278 | test_api: 279 | dependency: transitive 280 | description: 281 | name: test_api 282 | url: "https://pub.dartlang.org" 283 | source: hosted 284 | version: "0.4.3" 285 | typed_data: 286 | dependency: transitive 287 | description: 288 | name: typed_data 289 | url: "https://pub.dartlang.org" 290 | source: hosted 291 | version: "1.3.0" 292 | vector_math: 293 | dependency: transitive 294 | description: 295 | name: vector_math 296 | url: "https://pub.dartlang.org" 297 | source: hosted 298 | version: "2.1.0" 299 | win32: 300 | dependency: transitive 301 | description: 302 | name: win32 303 | url: "https://pub.dartlang.org" 304 | source: hosted 305 | version: "2.1.3" 306 | xdg_directories: 307 | dependency: transitive 308 | description: 309 | name: xdg_directories 310 | url: "https://pub.dartlang.org" 311 | source: hosted 312 | version: "0.2.0" 313 | xml: 314 | dependency: transitive 315 | description: 316 | name: xml 317 | url: "https://pub.dartlang.org" 318 | source: hosted 319 | version: "4.5.1" 320 | yaml: 321 | dependency: transitive 322 | description: 323 | name: yaml 324 | url: "https://pub.dartlang.org" 325 | source: hosted 326 | version: "2.2.1" 327 | sdks: 328 | dart: ">=2.13.0 <3.0.0" 329 | flutter: ">=1.24.0-10" 330 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: taskit 2 | description: Not Just Another Todo App 3 | 4 | publish_to: "none" # Remove this line if you wish to publish to pub.dev 5 | 6 | version: 1.0.0+1 7 | 8 | environment: 9 | sdk: ">=2.12.0 <3.0.0" 10 | 11 | dependencies: 12 | flutter: 13 | sdk: flutter 14 | intl: ^0.17.0 15 | cupertino_icons: ^1.0.2 16 | path_provider: ^2.0.2 17 | sqflite: ^2.0.0+3 18 | 19 | dev_dependencies: 20 | flutter_test: 21 | sdk: flutter 22 | flutter_launcher_icons: "^0.8.0" 23 | 24 | flutter_icons: 25 | image_path: "assets/logo.png" 26 | android: true 27 | 28 | # The following section is specific to Flutter. 29 | flutter: 30 | uses-material-design: true 31 | 32 | # To add assets to your application, add an assets section, like this: 33 | # assets: 34 | # - images/a_dot_burr.jpeg 35 | # - images/a_dot_ham.jpeg 36 | 37 | # An image asset can refer to one or more resolution-specific "variants", see 38 | # https://flutter.dev/assets-and-images/#resolution-aware. 39 | 40 | # For details regarding adding assets from package dependencies, see 41 | # https://flutter.dev/assets-and-images/#from-packages 42 | 43 | # To add custom fonts to your application, add a fonts section here, 44 | # in this "flutter" section. Each entry in this list should have a 45 | # "family" key with the font family name, and a "fonts" key with a 46 | # list giving the asset and other descriptors for the font. For 47 | # example: 48 | fonts: 49 | - family: ProximaNova 50 | fonts: 51 | - asset: assets/fonts/Proxima-Nova-Bold.otf 52 | - asset: assets/fonts/Proxima-Nova-Regular.ttf 53 | weight: 800 54 | 55 | # fonts: 56 | # - family: Schyler 57 | # fonts: 58 | # - asset: fonts/Schyler-Regular.ttf 59 | # - asset: fonts/Schyler-Italic.ttf 60 | # style: italic 61 | # - family: Trajan Pro 62 | # fonts: 63 | # - asset: fonts/TrajanPro.ttf 64 | # - asset: fonts/TrajanPro_Bold.ttf 65 | # weight: 700 66 | # 67 | # For details regarding fonts from package dependencies, 68 | # see https://flutter.dev/custom-fonts/#from-packages 69 | -------------------------------------------------------------------------------- /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_test/flutter_test.dart'; 10 | 11 | import 'package:taskit/main.dart'; 12 | 13 | void main() { 14 | testWidgets('Counter increments smoke test', (WidgetTester tester) async { 15 | // Build our app and trigger a frame. 16 | await tester.pumpWidget(MyApp()); 17 | 18 | // Verify that our counter starts at 0. 19 | expect(find.text('0'), findsOneWidget); 20 | expect(find.text('1'), findsNothing); 21 | 22 | // Tap the '+' icon and trigger a frame. 23 | await tester.tap(find.byIcon(Icons.add)); 24 | await tester.pump(); 25 | 26 | // Verify that our counter has incremented. 27 | expect(find.text('0'), findsNothing); 28 | expect(find.text('1'), findsOneWidget); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaclouds/TaskIt/1a5bbce3796a2712b09e9ac34407359eb23699c2/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 | taskit 27 | 28 | 29 | 30 | 33 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "taskit", 3 | "short_name": "taskit", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#0175C2", 7 | "theme_color": "#0175C2", 8 | "description": "Not Just Another Todo App", 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 | --------------------------------------------------------------------------------