├── .gitignore ├── .metadata ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── sgh │ │ │ └── timerack │ │ │ └── app │ │ │ └── timerack │ │ │ └── MainActivity.java │ │ └── res │ │ ├── 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 │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── circular.flr ├── ios ├── Debug-iphoneos │ ├── MTBBarcodeScanner │ │ └── libMTBBarcodeScanner.a │ ├── Runner.app │ │ ├── AppFrameworkInfo.plist │ │ ├── AppIcon20x20@2x.png │ │ ├── AppIcon20x20@2x~ipad.png │ │ ├── AppIcon20x20@3x.png │ │ ├── AppIcon20x20~ipad.png │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@2x~ipad.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon29x29~ipad.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@2x~ipad.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon40x40~ipad.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon76x76@2x~ipad.png │ │ ├── AppIcon76x76~ipad.png │ │ ├── AppIcon83.5x83.5@2x~ipad.png │ │ ├── Assets.car │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboardc │ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ │ ├── Info.plist │ │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ │ └── Main.storyboardc │ │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib │ │ │ │ ├── Info.plist │ │ │ │ └── UIViewController-BYZ-38-t0r.nib │ │ ├── Debug.xcconfig │ │ ├── Frameworks │ │ │ ├── App.framework │ │ │ │ ├── App │ │ │ │ ├── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ └── Flutter.framework │ │ │ │ ├── Flutter │ │ │ │ ├── Info.plist │ │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ │ └── icudtl.dat │ │ ├── Info.plist │ │ ├── PkgInfo │ │ ├── Runner │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ ├── embedded.mobileprovision │ │ └── flutter_assets │ │ │ ├── AssetManifest.json │ │ │ ├── FontManifest.json │ │ │ ├── LICENSE │ │ │ ├── fonts │ │ │ └── MaterialIcons-Regular.ttf │ │ │ ├── isolate_snapshot_data │ │ │ ├── kernel_blob.bin │ │ │ ├── packages │ │ │ └── cupertino_icons │ │ │ │ └── assets │ │ │ │ └── CupertinoIcons.ttf │ │ │ └── vm_snapshot_data │ ├── barcode_scan │ │ └── libbarcode_scan.a │ ├── camera │ │ └── libcamera.a │ ├── libPods-Runner.a │ ├── location │ │ └── liblocation.a │ ├── path_provider │ │ └── libpath_provider.a │ ├── shared_preferences │ │ └── libshared_preferences.a │ └── video_player │ │ └── libvideo_player.a ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.build │ └── Release-iphoneos │ │ └── Runner.build │ │ └── dgph ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata ├── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── 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 │ └── main.m ├── iphoneos │ └── Runner.app │ │ ├── AppFrameworkInfo.plist │ │ ├── AppIcon20x20@2x.png │ │ ├── AppIcon20x20@2x~ipad.png │ │ ├── AppIcon20x20@3x.png │ │ ├── AppIcon20x20~ipad.png │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@2x~ipad.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon29x29~ipad.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@2x~ipad.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon40x40~ipad.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon76x76@2x~ipad.png │ │ ├── AppIcon76x76~ipad.png │ │ ├── AppIcon83.5x83.5@2x~ipad.png │ │ ├── Assets.car │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboardc │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ ├── Info.plist │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ └── Main.storyboardc │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib │ │ │ ├── Info.plist │ │ │ └── UIViewController-BYZ-38-t0r.nib │ │ ├── Debug.xcconfig │ │ ├── Frameworks │ │ ├── App.framework │ │ │ ├── App │ │ │ ├── Info.plist │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── Flutter.framework │ │ │ ├── Flutter │ │ │ ├── Info.plist │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── icudtl.dat │ │ ├── Info.plist │ │ ├── PkgInfo │ │ ├── Runner │ │ ├── _CodeSignature │ │ └── CodeResources │ │ ├── embedded.mobileprovision │ │ └── flutter_assets │ │ ├── AssetManifest.json │ │ ├── FontManifest.json │ │ ├── LICENSE │ │ ├── fonts │ │ └── MaterialIcons-Regular.ttf │ │ ├── isolate_snapshot_data │ │ ├── kernel_blob.bin │ │ ├── packages │ │ └── cupertino_icons │ │ │ └── assets │ │ │ └── CupertinoIcons.ttf │ │ └── vm_snapshot_data └── pod_inputs.fingerprint ├── lib ├── globals.dart ├── main.dart ├── models │ └── user.dart ├── register.dart └── timerack.dart ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.lock 4 | *.log 5 | *.pyc 6 | *.swp 7 | .DS_Store 8 | .atom/ 9 | .buildlog/ 10 | .history 11 | .svn/ 12 | 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # Visual Studio Code related 20 | .vscode/ 21 | 22 | # Flutter/Dart/Pub related 23 | **/doc/api/ 24 | .dart_tool/ 25 | .flutter-plugins 26 | .packages 27 | .pub-cache/ 28 | .pub/ 29 | build/ 30 | 31 | # Android related 32 | **/android/**/gradle-wrapper.jar 33 | **/android/.gradle 34 | **/android/captures/ 35 | **/android/gradlew 36 | **/android/gradlew.bat 37 | **/android/local.properties 38 | **/android/**/GeneratedPluginRegistrant.java 39 | 40 | # iOS/XCode related 41 | **/ios/**/*.mode1v3 42 | **/ios/**/*.mode2v3 43 | **/ios/**/*.moved-aside 44 | **/ios/**/*.pbxuser 45 | **/ios/**/*.perspectivev3 46 | **/ios/**/*sync/ 47 | **/ios/**/.sconsign.dblite 48 | **/ios/**/.tags* 49 | **/ios/**/.vagrant/ 50 | **/ios/**/DerivedData/ 51 | **/ios/**/Icon? 52 | **/ios/**/Pods/ 53 | **/ios/**/.symlinks/ 54 | **/ios/**/profile 55 | **/ios/**/xcuserdata 56 | **/ios/.generated/ 57 | **/ios/Flutter/App.framework 58 | **/ios/Flutter/Flutter.framework 59 | **/ios/Flutter/Generated.xcconfig 60 | **/ios/Flutter/app.flx 61 | **/ios/Flutter/app.zip 62 | **/ios/Flutter/flutter_assets/ 63 | **/ios/ServiceDefinitions.json 64 | **/ios/Runner/GeneratedPluginRegistrant.* 65 | 66 | # Exceptions to above rules. 67 | !**/ios/**/default.mode1v3 68 | !**/ios/**/default.mode2v3 69 | !**/ios/**/default.pbxuser 70 | !**/ios/**/default.perspectivev3 71 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages 72 | -------------------------------------------------------------------------------- /.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: 72bf075e8d6961d2ca6df462b2228954f8d0e73a 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # timerack-flutter 2 | A simple attendance app developed in flutter. It scans the QR code for User details, and then allows the user to take a picture to Check In or Check Out at any time. User's location and server timestamp would be used for marking the attendance. 3 | -------------------------------------------------------------------------------- /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 from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 26 | 27 | android { 28 | compileSdkVersion 27 29 | 30 | lintOptions { 31 | disable 'InvalidPackage' 32 | } 33 | 34 | defaultConfig { 35 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). 36 | applicationId "sgh.timerack.app.timerack" 37 | minSdkVersion 21 38 | targetSdkVersion 27 39 | versionCode flutterVersionCode.toInteger() 40 | versionName flutterVersionName 41 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 42 | } 43 | 44 | buildTypes { 45 | release { 46 | // TODO: Add your own signing config for the release build. 47 | // Signing with the debug keys for now, so `flutter run --release` works. 48 | signingConfig signingConfigs.debug 49 | } 50 | } 51 | } 52 | 53 | flutter { 54 | source '../..' 55 | } 56 | 57 | dependencies { 58 | testImplementation 'junit:junit:4.12' 59 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 60 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 61 | } 62 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 9 | 10 | 15 | 19 | 26 | 30 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /android/app/src/main/java/sgh/timerack/app/timerack/MainActivity.java: -------------------------------------------------------------------------------- 1 | package sgh.timerack.app.timerack; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | import io.flutter.plugins.GeneratedPluginRegistrant; 6 | 7 | public class MainActivity extends FlutterActivity { 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | GeneratedPluginRegistrant.registerWith(this); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.2.1' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | google() 15 | jcenter() 16 | } 17 | } 18 | 19 | rootProject.buildDir = '../build' 20 | subprojects { 21 | project.buildDir = "${rootProject.buildDir}/${project.name}" 22 | } 23 | subprojects { 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/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-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /assets/circular.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/assets/circular.flr -------------------------------------------------------------------------------- /ios/Debug-iphoneos/MTBBarcodeScanner/libMTBBarcodeScanner.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/MTBBarcodeScanner/libMTBBarcodeScanner.a -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon20x20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon20x20@2x~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon20x20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon20x20~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon29x29.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon29x29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon29x29@2x~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon29x29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon29x29~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon40x40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon40x40@2x~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon40x40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon40x40~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon76x76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon76x76@2x~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon76x76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon76x76~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Assets.car -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Frameworks/App.framework/App: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Frameworks/App.framework/App -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Frameworks/App.framework/Info.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/Debug-iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Info.plist 8 | 9 | Mq+wRuRJiH7IsTeur7zwrEDoks4= 10 | 11 | 12 | files2 13 | 14 | rules 15 | 16 | ^ 17 | 18 | ^.*\.lproj/ 19 | 20 | optional 21 | 22 | weight 23 | 1000 24 | 25 | ^.*\.lproj/locversion.plist$ 26 | 27 | omit 28 | 29 | weight 30 | 1100 31 | 32 | ^Base\.lproj/ 33 | 34 | weight 35 | 1010 36 | 37 | ^version.plist$ 38 | 39 | 40 | rules2 41 | 42 | .*\.dSYM($|/) 43 | 44 | weight 45 | 11 46 | 47 | ^ 48 | 49 | weight 50 | 20 51 | 52 | ^(.*/)?\.DS_Store$ 53 | 54 | omit 55 | 56 | weight 57 | 2000 58 | 59 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 60 | 61 | nested 62 | 63 | weight 64 | 10 65 | 66 | ^.* 67 | 68 | ^.*\.lproj/ 69 | 70 | optional 71 | 72 | weight 73 | 1000 74 | 75 | ^.*\.lproj/locversion.plist$ 76 | 77 | omit 78 | 79 | weight 80 | 1100 81 | 82 | ^Base\.lproj/ 83 | 84 | weight 85 | 1010 86 | 87 | ^Info\.plist$ 88 | 89 | omit 90 | 91 | weight 92 | 20 93 | 94 | ^PkgInfo$ 95 | 96 | omit 97 | 98 | weight 99 | 20 100 | 101 | ^[^/]+$ 102 | 103 | nested 104 | 105 | weight 106 | 10 107 | 108 | ^embedded\.provisionprofile$ 109 | 110 | weight 111 | 20 112 | 113 | ^version\.plist$ 114 | 115 | weight 116 | 20 117 | 118 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | Flutter 9 | CFBundleIdentifier 10 | io.flutter.flutter 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | Flutter 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/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Info.plist 8 | 9 | t54pAsWCLTaEmY9FotN77u3gvwY= 10 | 11 | icudtl.dat 12 | 13 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 14 | 15 | 16 | files2 17 | 18 | icudtl.dat 19 | 20 | hash 21 | 22 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 23 | 24 | hash2 25 | 26 | INkC1JLiLe7AB9SqeZRmj6oaRlkPwCvM96J3pilvsnc= 27 | 28 | 29 | 30 | rules 31 | 32 | ^ 33 | 34 | ^.*\.lproj/ 35 | 36 | optional 37 | 38 | weight 39 | 1000 40 | 41 | ^.*\.lproj/locversion.plist$ 42 | 43 | omit 44 | 45 | weight 46 | 1100 47 | 48 | ^Base\.lproj/ 49 | 50 | weight 51 | 1010 52 | 53 | ^version.plist$ 54 | 55 | 56 | rules2 57 | 58 | .*\.dSYM($|/) 59 | 60 | weight 61 | 11 62 | 63 | ^ 64 | 65 | weight 66 | 20 67 | 68 | ^(.*/)?\.DS_Store$ 69 | 70 | omit 71 | 72 | weight 73 | 2000 74 | 75 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 76 | 77 | nested 78 | 79 | weight 80 | 10 81 | 82 | ^.* 83 | 84 | ^.*\.lproj/ 85 | 86 | optional 87 | 88 | weight 89 | 1000 90 | 91 | ^.*\.lproj/locversion.plist$ 92 | 93 | omit 94 | 95 | weight 96 | 1100 97 | 98 | ^Base\.lproj/ 99 | 100 | weight 101 | 1010 102 | 103 | ^Info\.plist$ 104 | 105 | omit 106 | 107 | weight 108 | 20 109 | 110 | ^PkgInfo$ 111 | 112 | omit 113 | 114 | weight 115 | 20 116 | 117 | ^[^/]+$ 118 | 119 | nested 120 | 121 | weight 122 | 10 123 | 124 | ^embedded\.provisionprofile$ 125 | 126 | weight 127 | 20 128 | 129 | ^version\.plist$ 130 | 131 | weight 132 | 20 133 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Info.plist -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/Runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/Runner -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | AppFrameworkInfo.plist 8 | 9 | 5dAMsVjJU7HOUDm3juoD03mgepg= 10 | 11 | AppIcon20x20@2x.png 12 | 13 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 14 | 15 | AppIcon20x20@2x~ipad.png 16 | 17 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 18 | 19 | AppIcon20x20@3x.png 20 | 21 | r9Rba73aDv4puOuwZpeQMhxiTOk= 22 | 23 | AppIcon20x20~ipad.png 24 | 25 | g+mCWJsZjvA3c3nQj3dwYfIM1xg= 26 | 27 | AppIcon29x29.png 28 | 29 | G6v51ewh+ev0yAgORxhdSdL4mI4= 30 | 31 | AppIcon29x29@2x.png 32 | 33 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 34 | 35 | AppIcon29x29@2x~ipad.png 36 | 37 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 38 | 39 | AppIcon29x29@3x.png 40 | 41 | jL+rc7F6J3T26scVfrILuOzdXHc= 42 | 43 | AppIcon29x29~ipad.png 44 | 45 | G6v51ewh+ev0yAgORxhdSdL4mI4= 46 | 47 | AppIcon40x40@2x.png 48 | 49 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 50 | 51 | AppIcon40x40@2x~ipad.png 52 | 53 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 54 | 55 | AppIcon40x40@3x.png 56 | 57 | KUkKJx3gfOIaPK20bee2useTKxc= 58 | 59 | AppIcon40x40~ipad.png 60 | 61 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 62 | 63 | AppIcon60x60@2x.png 64 | 65 | KUkKJx3gfOIaPK20bee2useTKxc= 66 | 67 | AppIcon60x60@3x.png 68 | 69 | 3qMz1bEERH9ZFH70GfxDqHrqaTs= 70 | 71 | AppIcon76x76@2x~ipad.png 72 | 73 | jFYkRZ3iaE8ZrHHwS6e8A146QvA= 74 | 75 | AppIcon76x76~ipad.png 76 | 77 | Ry+dGGmtUJc8AlgJxbvWAGiZC/A= 78 | 79 | AppIcon83.5x83.5@2x~ipad.png 80 | 81 | x7Xp0exJswBAdt9U1n5LNs7jlM0= 82 | 83 | Assets.car 84 | 85 | sMXqaSdqotITM+MOMuS/pLWHlV4= 86 | 87 | Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib 88 | 89 | TV7nGIIMf0aJZDvzo9LBpdQA9tY= 90 | 91 | Base.lproj/LaunchScreen.storyboardc/Info.plist 92 | 93 | n2t8gsDpfE6XkhG31p7IQJRxTxU= 94 | 95 | Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib 96 | 97 | kBo/Vj60zpCG0vea3drVNg0zgx4= 98 | 99 | Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib 100 | 101 | 4P/swoyMINg9B/dZY8AwuYaXSsE= 102 | 103 | Base.lproj/Main.storyboardc/Info.plist 104 | 105 | MDrKFvFWroTb0+KEbQShBcoBvo4= 106 | 107 | Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib 108 | 109 | ZDJmZYr4EgAHojJ5hR4deoIWMew= 110 | 111 | Debug.xcconfig 112 | 113 | pyLh5N02yYGJVdbytsF14fliWbo= 114 | 115 | Frameworks/App.framework/App 116 | 117 | FjYDWe+T1vaRrwbLBAuRvf09xOU= 118 | 119 | Frameworks/App.framework/Info.plist 120 | 121 | Mq+wRuRJiH7IsTeur7zwrEDoks4= 122 | 123 | Frameworks/App.framework/_CodeSignature/CodeResources 124 | 125 | EzUHq0/CVhHX7IqcZQ2HbAlxAKg= 126 | 127 | Frameworks/Flutter.framework/Flutter 128 | 129 | Kn+N0jB3TUJAZE5EgxOsji43/aY= 130 | 131 | Frameworks/Flutter.framework/Info.plist 132 | 133 | t54pAsWCLTaEmY9FotN77u3gvwY= 134 | 135 | Frameworks/Flutter.framework/_CodeSignature/CodeResources 136 | 137 | kaqqqqg33tZHyB/UPaoLF4bBZ0Y= 138 | 139 | Frameworks/Flutter.framework/icudtl.dat 140 | 141 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 142 | 143 | Info.plist 144 | 145 | uqzRaAD/qWxPgklRlzWsRUWALmY= 146 | 147 | PkgInfo 148 | 149 | n57qDP4tZfLD1rCS43W0B4LQjzE= 150 | 151 | embedded.mobileprovision 152 | 153 | hwAM/g1u7/82MActei7HWjAv57A= 154 | 155 | flutter_assets/AssetManifest.json 156 | 157 | oG5/OGn+vw7vp/nu5DUDoZJ4nFc= 158 | 159 | flutter_assets/FontManifest.json 160 | 161 | 8Eg+f3qfbnydCo65zUUTI2L/o/k= 162 | 163 | flutter_assets/LICENSE 164 | 165 | Aj2m26H1eC3Oq+NZdpUGzYdNi3w= 166 | 167 | flutter_assets/fonts/MaterialIcons-Regular.ttf 168 | 169 | nIzDzw7hjOThppiX5OleKNAxtqM= 170 | 171 | flutter_assets/isolate_snapshot_data 172 | 173 | GTQIBlb/3TAQvr9UaZlshrvAcEE= 174 | 175 | flutter_assets/kernel_blob.bin 176 | 177 | GvdXM8b8zT9zbqXdPCrne+lF5hQ= 178 | 179 | flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf 180 | 181 | AlgKy1FbEPcZcd0kdJLLHtOy68I= 182 | 183 | flutter_assets/vm_snapshot_data 184 | 185 | JWnIkj7l0/RrkIC/cd1yX7GOeiU= 186 | 187 | 188 | files2 189 | 190 | AppFrameworkInfo.plist 191 | 192 | hash 193 | 194 | 5dAMsVjJU7HOUDm3juoD03mgepg= 195 | 196 | hash2 197 | 198 | zmN6K6WkF4GUouCIKTHYU8pTli6+46OF2Y9KZpC5ap4= 199 | 200 | 201 | AppIcon20x20@2x.png 202 | 203 | hash 204 | 205 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 206 | 207 | hash2 208 | 209 | pZ6B288r9rCHNZnUOq30sFvAod4dQKjIrFCT9s5ZtCc= 210 | 211 | 212 | AppIcon20x20@2x~ipad.png 213 | 214 | hash 215 | 216 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 217 | 218 | hash2 219 | 220 | pZ6B288r9rCHNZnUOq30sFvAod4dQKjIrFCT9s5ZtCc= 221 | 222 | 223 | AppIcon20x20@3x.png 224 | 225 | hash 226 | 227 | r9Rba73aDv4puOuwZpeQMhxiTOk= 228 | 229 | hash2 230 | 231 | nK/NQl4INFbW5pwHNllTvNEdMttaBJKNnUxR8mHOpHQ= 232 | 233 | 234 | AppIcon20x20~ipad.png 235 | 236 | hash 237 | 238 | g+mCWJsZjvA3c3nQj3dwYfIM1xg= 239 | 240 | hash2 241 | 242 | CrmVcDicAw942mx+hGNd76cIIfLkmdYvTH41IaZXg8Y= 243 | 244 | 245 | AppIcon29x29.png 246 | 247 | hash 248 | 249 | G6v51ewh+ev0yAgORxhdSdL4mI4= 250 | 251 | hash2 252 | 253 | ehIU9ggFIN8xETPVGkZH7XvNB1UZJ04tyotY+FpUjeQ= 254 | 255 | 256 | AppIcon29x29@2x.png 257 | 258 | hash 259 | 260 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 261 | 262 | hash2 263 | 264 | h1qcEQoV064YGJ3Szr2OcOYD3GUfMlIeDIx6vHcZhYk= 265 | 266 | 267 | AppIcon29x29@2x~ipad.png 268 | 269 | hash 270 | 271 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 272 | 273 | hash2 274 | 275 | h1qcEQoV064YGJ3Szr2OcOYD3GUfMlIeDIx6vHcZhYk= 276 | 277 | 278 | AppIcon29x29@3x.png 279 | 280 | hash 281 | 282 | jL+rc7F6J3T26scVfrILuOzdXHc= 283 | 284 | hash2 285 | 286 | wwDE3EyXsgBhDCDFNHY/aC1inldQJizJyVPVeE6Ga0U= 287 | 288 | 289 | AppIcon29x29~ipad.png 290 | 291 | hash 292 | 293 | G6v51ewh+ev0yAgORxhdSdL4mI4= 294 | 295 | hash2 296 | 297 | ehIU9ggFIN8xETPVGkZH7XvNB1UZJ04tyotY+FpUjeQ= 298 | 299 | 300 | AppIcon40x40@2x.png 301 | 302 | hash 303 | 304 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 305 | 306 | hash2 307 | 308 | iTeFZ5mBm3ut8QeRDEbNEQXgQD3Z7AYGwdPE1YIFY2Q= 309 | 310 | 311 | AppIcon40x40@2x~ipad.png 312 | 313 | hash 314 | 315 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 316 | 317 | hash2 318 | 319 | iTeFZ5mBm3ut8QeRDEbNEQXgQD3Z7AYGwdPE1YIFY2Q= 320 | 321 | 322 | AppIcon40x40@3x.png 323 | 324 | hash 325 | 326 | KUkKJx3gfOIaPK20bee2useTKxc= 327 | 328 | hash2 329 | 330 | suWsxG0NZIsUhVBVRrw1L/OyEAMFjhGVfYCB6YXcaXM= 331 | 332 | 333 | AppIcon40x40~ipad.png 334 | 335 | hash 336 | 337 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 338 | 339 | hash2 340 | 341 | pZ6B288r9rCHNZnUOq30sFvAod4dQKjIrFCT9s5ZtCc= 342 | 343 | 344 | AppIcon60x60@2x.png 345 | 346 | hash 347 | 348 | KUkKJx3gfOIaPK20bee2useTKxc= 349 | 350 | hash2 351 | 352 | suWsxG0NZIsUhVBVRrw1L/OyEAMFjhGVfYCB6YXcaXM= 353 | 354 | 355 | AppIcon60x60@3x.png 356 | 357 | hash 358 | 359 | 3qMz1bEERH9ZFH70GfxDqHrqaTs= 360 | 361 | hash2 362 | 363 | 8vIJcNbtnkabGxF9wXOQVknowbbltGNMGQ9JbSjuYpM= 364 | 365 | 366 | AppIcon76x76@2x~ipad.png 367 | 368 | hash 369 | 370 | jFYkRZ3iaE8ZrHHwS6e8A146QvA= 371 | 372 | hash2 373 | 374 | PlbliFKnc8pCMtBpYR4HbMSMmgR5OCpnq5MJ/qISysU= 375 | 376 | 377 | AppIcon76x76~ipad.png 378 | 379 | hash 380 | 381 | Ry+dGGmtUJc8AlgJxbvWAGiZC/A= 382 | 383 | hash2 384 | 385 | fN8X9Ydt+gt6MhIJFI/OtS70FTk1SM4I8308VtNWZyk= 386 | 387 | 388 | AppIcon83.5x83.5@2x~ipad.png 389 | 390 | hash 391 | 392 | x7Xp0exJswBAdt9U1n5LNs7jlM0= 393 | 394 | hash2 395 | 396 | qRVOhVYhQhRZs+Zpa1KDrFjoYC9yZ6LZqKhJC3d0Bcs= 397 | 398 | 399 | Assets.car 400 | 401 | hash 402 | 403 | sMXqaSdqotITM+MOMuS/pLWHlV4= 404 | 405 | hash2 406 | 407 | mwDU6ery+1Odty2WYu2EDMOnpk3U4b3FZr/lbYhOMtw= 408 | 409 | 410 | Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib 411 | 412 | hash 413 | 414 | TV7nGIIMf0aJZDvzo9LBpdQA9tY= 415 | 416 | hash2 417 | 418 | Av/MSPBirPsAA8Wt8eRWD+ho3WADs2eL5HuuCR3ftmM= 419 | 420 | 421 | Base.lproj/LaunchScreen.storyboardc/Info.plist 422 | 423 | hash 424 | 425 | n2t8gsDpfE6XkhG31p7IQJRxTxU= 426 | 427 | hash2 428 | 429 | HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg= 430 | 431 | 432 | Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib 433 | 434 | hash 435 | 436 | kBo/Vj60zpCG0vea3drVNg0zgx4= 437 | 438 | hash2 439 | 440 | OglLEl3VPAYaPgQLMMHXlxpElGRD0wMygixjzm1iOz8= 441 | 442 | 443 | Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib 444 | 445 | hash 446 | 447 | 4P/swoyMINg9B/dZY8AwuYaXSsE= 448 | 449 | hash2 450 | 451 | sbFuRmvwVTGRbXDzyKvbqtWTm9SvKmZk0CGAwQfGQgc= 452 | 453 | 454 | Base.lproj/Main.storyboardc/Info.plist 455 | 456 | hash 457 | 458 | MDrKFvFWroTb0+KEbQShBcoBvo4= 459 | 460 | hash2 461 | 462 | PpvapAjR62rl6Ym4E6hkTgpKmBICxTaQXeUqcpHmmqQ= 463 | 464 | 465 | Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib 466 | 467 | hash 468 | 469 | ZDJmZYr4EgAHojJ5hR4deoIWMew= 470 | 471 | hash2 472 | 473 | K3ibWzqLHp7sX1f5/CfEG2sndzTngwJmudAlf99Dhrg= 474 | 475 | 476 | Debug.xcconfig 477 | 478 | hash 479 | 480 | pyLh5N02yYGJVdbytsF14fliWbo= 481 | 482 | hash2 483 | 484 | UdusQvwNSDY0Qt8bWgxKY6wU+KKLiZFuhlc2LHLgnH8= 485 | 486 | 487 | Frameworks/App.framework/App 488 | 489 | hash 490 | 491 | FjYDWe+T1vaRrwbLBAuRvf09xOU= 492 | 493 | hash2 494 | 495 | blTI3pXgAGtHGHJt/0WCnnv2pPq131P5gUW9PatZtN8= 496 | 497 | 498 | Frameworks/App.framework/Info.plist 499 | 500 | hash 501 | 502 | Mq+wRuRJiH7IsTeur7zwrEDoks4= 503 | 504 | hash2 505 | 506 | psec61HxCx39D44v8dlSAyyCzzyaogxBEN1upiq+rFQ= 507 | 508 | 509 | Frameworks/App.framework/_CodeSignature/CodeResources 510 | 511 | hash 512 | 513 | EzUHq0/CVhHX7IqcZQ2HbAlxAKg= 514 | 515 | hash2 516 | 517 | Xv/UN/4NefJR81nSVvTG+zlged9nUEb0v4Tt7/xKoiU= 518 | 519 | 520 | Frameworks/Flutter.framework/Flutter 521 | 522 | hash 523 | 524 | Kn+N0jB3TUJAZE5EgxOsji43/aY= 525 | 526 | hash2 527 | 528 | Dwd3swwzn2WKotIYmHwoU1b39gTkM3EANJnpg1Z6Jag= 529 | 530 | 531 | Frameworks/Flutter.framework/Info.plist 532 | 533 | hash 534 | 535 | t54pAsWCLTaEmY9FotN77u3gvwY= 536 | 537 | hash2 538 | 539 | rNkCfGOOlGEV12pTK0NAPe4qEK+BF0UWt9vW01XsCjI= 540 | 541 | 542 | Frameworks/Flutter.framework/_CodeSignature/CodeResources 543 | 544 | hash 545 | 546 | kaqqqqg33tZHyB/UPaoLF4bBZ0Y= 547 | 548 | hash2 549 | 550 | JJwAa75wEwApk/hkd8qSRecBa7S/xTSNzS0QnXCn9BA= 551 | 552 | 553 | Frameworks/Flutter.framework/icudtl.dat 554 | 555 | hash 556 | 557 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 558 | 559 | hash2 560 | 561 | INkC1JLiLe7AB9SqeZRmj6oaRlkPwCvM96J3pilvsnc= 562 | 563 | 564 | embedded.mobileprovision 565 | 566 | hash 567 | 568 | hwAM/g1u7/82MActei7HWjAv57A= 569 | 570 | hash2 571 | 572 | S0kRwYFWc3fHeMlsjNhW7mdFL3V+RMCZJe82eIQWA9M= 573 | 574 | 575 | flutter_assets/AssetManifest.json 576 | 577 | hash 578 | 579 | oG5/OGn+vw7vp/nu5DUDoZJ4nFc= 580 | 581 | hash2 582 | 583 | Sps95+7JukayebvM0TLjL1LW1VXXndpKp/O8tOm9ZR8= 584 | 585 | 586 | flutter_assets/FontManifest.json 587 | 588 | hash 589 | 590 | 8Eg+f3qfbnydCo65zUUTI2L/o/k= 591 | 592 | hash2 593 | 594 | +vlc4DeQNrQqihrbyAQ+GfLyhJJmk3V8JJTsYL09FIs= 595 | 596 | 597 | flutter_assets/LICENSE 598 | 599 | hash 600 | 601 | Aj2m26H1eC3Oq+NZdpUGzYdNi3w= 602 | 603 | hash2 604 | 605 | IeSeFmkk3brcAL3+tCaJai3S4r/Rq0Nbr0UiT3gTbcw= 606 | 607 | 608 | flutter_assets/fonts/MaterialIcons-Regular.ttf 609 | 610 | hash 611 | 612 | nIzDzw7hjOThppiX5OleKNAxtqM= 613 | 614 | hash2 615 | 616 | Wuh7JiGdsCj8cMnXMpa8jtW4ekzRz359zPE0NyQ7iRE= 617 | 618 | 619 | flutter_assets/isolate_snapshot_data 620 | 621 | hash 622 | 623 | GTQIBlb/3TAQvr9UaZlshrvAcEE= 624 | 625 | hash2 626 | 627 | VxrhpM/wbPuP5cBrYkEg60Qdc7P/q69M0mNZy7dCMQg= 628 | 629 | 630 | flutter_assets/kernel_blob.bin 631 | 632 | hash 633 | 634 | GvdXM8b8zT9zbqXdPCrne+lF5hQ= 635 | 636 | hash2 637 | 638 | lS/LbQFev6PmCZVwi1IK+pDS7oUZVBJd8FbotNe5Cq8= 639 | 640 | 641 | flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf 642 | 643 | hash 644 | 645 | AlgKy1FbEPcZcd0kdJLLHtOy68I= 646 | 647 | hash2 648 | 649 | ETQZmaktT/cBMTCTNJd49hWX7HSYPa18vp5zuIwK13c= 650 | 651 | 652 | flutter_assets/vm_snapshot_data 653 | 654 | hash 655 | 656 | JWnIkj7l0/RrkIC/cd1yX7GOeiU= 657 | 658 | hash2 659 | 660 | PZNwH+mzYVVuhkCLVqyDaOdu7cUL6wvn5S9vLvxVcB0= 661 | 662 | 663 | 664 | rules 665 | 666 | ^ 667 | 668 | ^.*\.lproj/ 669 | 670 | optional 671 | 672 | weight 673 | 1000 674 | 675 | ^.*\.lproj/locversion.plist$ 676 | 677 | omit 678 | 679 | weight 680 | 1100 681 | 682 | ^Base\.lproj/ 683 | 684 | weight 685 | 1010 686 | 687 | ^version.plist$ 688 | 689 | 690 | rules2 691 | 692 | .*\.dSYM($|/) 693 | 694 | weight 695 | 11 696 | 697 | ^ 698 | 699 | weight 700 | 20 701 | 702 | ^(.*/)?\.DS_Store$ 703 | 704 | omit 705 | 706 | weight 707 | 2000 708 | 709 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 710 | 711 | nested 712 | 713 | weight 714 | 10 715 | 716 | ^.* 717 | 718 | ^.*\.lproj/ 719 | 720 | optional 721 | 722 | weight 723 | 1000 724 | 725 | ^.*\.lproj/locversion.plist$ 726 | 727 | omit 728 | 729 | weight 730 | 1100 731 | 732 | ^Base\.lproj/ 733 | 734 | weight 735 | 1010 736 | 737 | ^Info\.plist$ 738 | 739 | omit 740 | 741 | weight 742 | 20 743 | 744 | ^PkgInfo$ 745 | 746 | omit 747 | 748 | weight 749 | 20 750 | 751 | ^[^/]+$ 752 | 753 | nested 754 | 755 | weight 756 | 10 757 | 758 | ^embedded\.provisionprofile$ 759 | 760 | weight 761 | 20 762 | 763 | ^version\.plist$ 764 | 765 | weight 766 | 20 767 | 768 | 769 | 770 | 771 | -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/embedded.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/embedded.mobileprovision -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/flutter_assets/AssetManifest.json: -------------------------------------------------------------------------------- 1 | {"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/flutter_assets/FontManifest.json: -------------------------------------------------------------------------------- 1 | [{"fonts":[{"asset":"fonts/MaterialIcons-Regular.ttf"}],"family":"MaterialIcons"},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/flutter_assets/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/flutter_assets/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/flutter_assets/isolate_snapshot_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/flutter_assets/isolate_snapshot_data -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/flutter_assets/kernel_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/flutter_assets/kernel_blob.bin -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf -------------------------------------------------------------------------------- /ios/Debug-iphoneos/Runner.app/flutter_assets/vm_snapshot_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/Runner.app/flutter_assets/vm_snapshot_data -------------------------------------------------------------------------------- /ios/Debug-iphoneos/barcode_scan/libbarcode_scan.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/barcode_scan/libbarcode_scan.a -------------------------------------------------------------------------------- /ios/Debug-iphoneos/camera/libcamera.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/camera/libcamera.a -------------------------------------------------------------------------------- /ios/Debug-iphoneos/libPods-Runner.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/libPods-Runner.a -------------------------------------------------------------------------------- /ios/Debug-iphoneos/location/liblocation.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/location/liblocation.a -------------------------------------------------------------------------------- /ios/Debug-iphoneos/path_provider/libpath_provider.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/path_provider/libpath_provider.a -------------------------------------------------------------------------------- /ios/Debug-iphoneos/shared_preferences/libshared_preferences.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/shared_preferences/libshared_preferences.a -------------------------------------------------------------------------------- /ios/Debug-iphoneos/video_player/libvideo_player.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Debug-iphoneos/video_player/libvideo_player.a -------------------------------------------------------------------------------- /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.build/Release-iphoneos/Runner.build/dgph: -------------------------------------------------------------------------------- 1 | DGPH1.04 Jun 4 201818:18:10/Usersapple DocumentsProjects SGH_Fluttertimerack-flutterios -------------------------------------------------------------------------------- /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 | 2D5378261FAA1A9400D5DBA9 /* flutter_assets in Resources */ = {isa = PBXBuildFile; fileRef = 2D5378251FAA1A9400D5DBA9 /* flutter_assets */; }; 12 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 13 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 14 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 15 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 16 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 17 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 18 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 19 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 20 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 21 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 22 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXCopyFilesBuildPhase section */ 26 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 27 | isa = PBXCopyFilesBuildPhase; 28 | buildActionMask = 2147483647; 29 | dstPath = ""; 30 | dstSubfolderSpec = 10; 31 | files = ( 32 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 33 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 34 | ); 35 | name = "Embed Frameworks"; 36 | runOnlyForDeploymentPostprocessing = 0; 37 | }; 38 | /* End PBXCopyFilesBuildPhase section */ 39 | 40 | /* Begin PBXFileReference section */ 41 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; 42 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; 43 | 2D5378251FAA1A9400D5DBA9 /* flutter_assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = flutter_assets; path = Flutter/flutter_assets; sourceTree = SOURCE_ROOT; }; 44 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 45 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 46 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 47 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 48 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 49 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 50 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 51 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 52 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 53 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 54 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 55 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 56 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 57 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 58 | /* End PBXFileReference section */ 59 | 60 | /* Begin PBXFrameworksBuildPhase section */ 61 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 66 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 67 | ); 68 | runOnlyForDeploymentPostprocessing = 0; 69 | }; 70 | /* End PBXFrameworksBuildPhase section */ 71 | 72 | /* Begin PBXGroup section */ 73 | 9740EEB11CF90186004384FC /* Flutter */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | 2D5378251FAA1A9400D5DBA9 /* flutter_assets */, 77 | 3B80C3931E831B6300D905FE /* App.framework */, 78 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 79 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 80 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 81 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 82 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 83 | ); 84 | name = Flutter; 85 | sourceTree = ""; 86 | }; 87 | 97C146E51CF9000F007C117D = { 88 | isa = PBXGroup; 89 | children = ( 90 | 9740EEB11CF90186004384FC /* Flutter */, 91 | 97C146F01CF9000F007C117D /* Runner */, 92 | 97C146EF1CF9000F007C117D /* Products */, 93 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 94 | ); 95 | sourceTree = ""; 96 | }; 97 | 97C146EF1CF9000F007C117D /* Products */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 97C146EE1CF9000F007C117D /* Runner.app */, 101 | ); 102 | name = Products; 103 | sourceTree = ""; 104 | }; 105 | 97C146F01CF9000F007C117D /* Runner */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 109 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 110 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 111 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 112 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 113 | 97C147021CF9000F007C117D /* Info.plist */, 114 | 97C146F11CF9000F007C117D /* Supporting Files */, 115 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, 116 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, 117 | ); 118 | path = Runner; 119 | sourceTree = ""; 120 | }; 121 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | 97C146F21CF9000F007C117D /* main.m */, 125 | ); 126 | name = "Supporting Files"; 127 | sourceTree = ""; 128 | }; 129 | /* End PBXGroup section */ 130 | 131 | /* Begin PBXNativeTarget section */ 132 | 97C146ED1CF9000F007C117D /* Runner */ = { 133 | isa = PBXNativeTarget; 134 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 135 | buildPhases = ( 136 | 9740EEB61CF901F6004384FC /* Run Script */, 137 | 97C146EA1CF9000F007C117D /* Sources */, 138 | 97C146EB1CF9000F007C117D /* Frameworks */, 139 | 97C146EC1CF9000F007C117D /* Resources */, 140 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 141 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 142 | ); 143 | buildRules = ( 144 | ); 145 | dependencies = ( 146 | ); 147 | name = Runner; 148 | productName = Runner; 149 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 150 | productType = "com.apple.product-type.application"; 151 | }; 152 | /* End PBXNativeTarget section */ 153 | 154 | /* Begin PBXProject section */ 155 | 97C146E61CF9000F007C117D /* Project object */ = { 156 | isa = PBXProject; 157 | attributes = { 158 | LastUpgradeCheck = 0910; 159 | ORGANIZATIONNAME = "The Chromium Authors"; 160 | TargetAttributes = { 161 | 97C146ED1CF9000F007C117D = { 162 | CreatedOnToolsVersion = 7.3.1; 163 | }; 164 | }; 165 | }; 166 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 167 | compatibilityVersion = "Xcode 3.2"; 168 | developmentRegion = English; 169 | hasScannedForEncodings = 0; 170 | knownRegions = ( 171 | en, 172 | Base, 173 | ); 174 | mainGroup = 97C146E51CF9000F007C117D; 175 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 176 | projectDirPath = ""; 177 | projectRoot = ""; 178 | targets = ( 179 | 97C146ED1CF9000F007C117D /* Runner */, 180 | ); 181 | }; 182 | /* End PBXProject section */ 183 | 184 | /* Begin PBXResourcesBuildPhase section */ 185 | 97C146EC1CF9000F007C117D /* Resources */ = { 186 | isa = PBXResourcesBuildPhase; 187 | buildActionMask = 2147483647; 188 | files = ( 189 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 190 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 191 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 192 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 193 | 2D5378261FAA1A9400D5DBA9 /* flutter_assets in Resources */, 194 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | /* End PBXResourcesBuildPhase section */ 199 | 200 | /* Begin PBXShellScriptBuildPhase section */ 201 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 202 | isa = PBXShellScriptBuildPhase; 203 | buildActionMask = 2147483647; 204 | files = ( 205 | ); 206 | inputPaths = ( 207 | ); 208 | name = "Thin Binary"; 209 | outputPaths = ( 210 | ); 211 | runOnlyForDeploymentPostprocessing = 0; 212 | shellPath = /bin/sh; 213 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 214 | }; 215 | 9740EEB61CF901F6004384FC /* Run Script */ = { 216 | isa = PBXShellScriptBuildPhase; 217 | buildActionMask = 2147483647; 218 | files = ( 219 | ); 220 | inputPaths = ( 221 | ); 222 | name = "Run Script"; 223 | outputPaths = ( 224 | ); 225 | runOnlyForDeploymentPostprocessing = 0; 226 | shellPath = /bin/sh; 227 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 228 | }; 229 | /* End PBXShellScriptBuildPhase section */ 230 | 231 | /* Begin PBXSourcesBuildPhase section */ 232 | 97C146EA1CF9000F007C117D /* Sources */ = { 233 | isa = PBXSourcesBuildPhase; 234 | buildActionMask = 2147483647; 235 | files = ( 236 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 237 | 97C146F31CF9000F007C117D /* main.m in Sources */, 238 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, 239 | ); 240 | runOnlyForDeploymentPostprocessing = 0; 241 | }; 242 | /* End PBXSourcesBuildPhase section */ 243 | 244 | /* Begin PBXVariantGroup section */ 245 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 246 | isa = PBXVariantGroup; 247 | children = ( 248 | 97C146FB1CF9000F007C117D /* Base */, 249 | ); 250 | name = Main.storyboard; 251 | sourceTree = ""; 252 | }; 253 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 254 | isa = PBXVariantGroup; 255 | children = ( 256 | 97C147001CF9000F007C117D /* Base */, 257 | ); 258 | name = LaunchScreen.storyboard; 259 | sourceTree = ""; 260 | }; 261 | /* End PBXVariantGroup section */ 262 | 263 | /* Begin XCBuildConfiguration section */ 264 | 249021D3217E4FDB00AE95B9 /* Profile */ = { 265 | isa = XCBuildConfiguration; 266 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 267 | buildSettings = { 268 | ALWAYS_SEARCH_USER_PATHS = NO; 269 | CLANG_ANALYZER_NONNULL = YES; 270 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 271 | CLANG_CXX_LIBRARY = "libc++"; 272 | CLANG_ENABLE_MODULES = YES; 273 | CLANG_ENABLE_OBJC_ARC = YES; 274 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 275 | CLANG_WARN_BOOL_CONVERSION = YES; 276 | CLANG_WARN_COMMA = YES; 277 | CLANG_WARN_CONSTANT_CONVERSION = YES; 278 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 279 | CLANG_WARN_EMPTY_BODY = YES; 280 | CLANG_WARN_ENUM_CONVERSION = YES; 281 | CLANG_WARN_INFINITE_RECURSION = YES; 282 | CLANG_WARN_INT_CONVERSION = YES; 283 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 284 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 285 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 286 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 287 | CLANG_WARN_STRICT_PROTOTYPES = YES; 288 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 289 | CLANG_WARN_UNREACHABLE_CODE = YES; 290 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 291 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 292 | COPY_PHASE_STRIP = NO; 293 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 294 | ENABLE_NS_ASSERTIONS = NO; 295 | ENABLE_STRICT_OBJC_MSGSEND = YES; 296 | GCC_C_LANGUAGE_STANDARD = gnu99; 297 | GCC_NO_COMMON_BLOCKS = YES; 298 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 299 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 300 | GCC_WARN_UNDECLARED_SELECTOR = YES; 301 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 302 | GCC_WARN_UNUSED_FUNCTION = YES; 303 | GCC_WARN_UNUSED_VARIABLE = YES; 304 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 305 | MTL_ENABLE_DEBUG_INFO = NO; 306 | SDKROOT = iphoneos; 307 | TARGETED_DEVICE_FAMILY = "1,2"; 308 | VALIDATE_PRODUCT = YES; 309 | }; 310 | name = Profile; 311 | }; 312 | 249021D4217E4FDB00AE95B9 /* Profile */ = { 313 | isa = XCBuildConfiguration; 314 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 315 | buildSettings = { 316 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 317 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 318 | DEVELOPMENT_TEAM = S8QB4VV633; 319 | ENABLE_BITCODE = NO; 320 | FRAMEWORK_SEARCH_PATHS = ( 321 | "$(inherited)", 322 | "$(PROJECT_DIR)/Flutter", 323 | ); 324 | INFOPLIST_FILE = Runner/Info.plist; 325 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 326 | LIBRARY_SEARCH_PATHS = ( 327 | "$(inherited)", 328 | "$(PROJECT_DIR)/Flutter", 329 | ); 330 | PRODUCT_BUNDLE_IDENTIFIER = sgh.timerack.app.timerack; 331 | PRODUCT_NAME = "$(TARGET_NAME)"; 332 | VERSIONING_SYSTEM = "apple-generic"; 333 | }; 334 | name = Profile; 335 | }; 336 | 97C147031CF9000F007C117D /* Debug */ = { 337 | isa = XCBuildConfiguration; 338 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 339 | buildSettings = { 340 | ALWAYS_SEARCH_USER_PATHS = NO; 341 | CLANG_ANALYZER_NONNULL = YES; 342 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 343 | CLANG_CXX_LIBRARY = "libc++"; 344 | CLANG_ENABLE_MODULES = YES; 345 | CLANG_ENABLE_OBJC_ARC = YES; 346 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 347 | CLANG_WARN_BOOL_CONVERSION = YES; 348 | CLANG_WARN_COMMA = YES; 349 | CLANG_WARN_CONSTANT_CONVERSION = YES; 350 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 351 | CLANG_WARN_EMPTY_BODY = YES; 352 | CLANG_WARN_ENUM_CONVERSION = YES; 353 | CLANG_WARN_INFINITE_RECURSION = YES; 354 | CLANG_WARN_INT_CONVERSION = YES; 355 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 356 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 357 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 358 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 359 | CLANG_WARN_STRICT_PROTOTYPES = YES; 360 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 361 | CLANG_WARN_UNREACHABLE_CODE = YES; 362 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 363 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 364 | COPY_PHASE_STRIP = NO; 365 | DEBUG_INFORMATION_FORMAT = dwarf; 366 | ENABLE_STRICT_OBJC_MSGSEND = YES; 367 | ENABLE_TESTABILITY = YES; 368 | GCC_C_LANGUAGE_STANDARD = gnu99; 369 | GCC_DYNAMIC_NO_PIC = NO; 370 | GCC_NO_COMMON_BLOCKS = YES; 371 | GCC_OPTIMIZATION_LEVEL = 0; 372 | GCC_PREPROCESSOR_DEFINITIONS = ( 373 | "DEBUG=1", 374 | "$(inherited)", 375 | ); 376 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 377 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 378 | GCC_WARN_UNDECLARED_SELECTOR = YES; 379 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 380 | GCC_WARN_UNUSED_FUNCTION = YES; 381 | GCC_WARN_UNUSED_VARIABLE = YES; 382 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 383 | MTL_ENABLE_DEBUG_INFO = YES; 384 | ONLY_ACTIVE_ARCH = YES; 385 | SDKROOT = iphoneos; 386 | TARGETED_DEVICE_FAMILY = "1,2"; 387 | }; 388 | name = Debug; 389 | }; 390 | 97C147041CF9000F007C117D /* Release */ = { 391 | isa = XCBuildConfiguration; 392 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 393 | buildSettings = { 394 | ALWAYS_SEARCH_USER_PATHS = NO; 395 | CLANG_ANALYZER_NONNULL = YES; 396 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 397 | CLANG_CXX_LIBRARY = "libc++"; 398 | CLANG_ENABLE_MODULES = YES; 399 | CLANG_ENABLE_OBJC_ARC = YES; 400 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 401 | CLANG_WARN_BOOL_CONVERSION = YES; 402 | CLANG_WARN_COMMA = YES; 403 | CLANG_WARN_CONSTANT_CONVERSION = YES; 404 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 405 | CLANG_WARN_EMPTY_BODY = YES; 406 | CLANG_WARN_ENUM_CONVERSION = YES; 407 | CLANG_WARN_INFINITE_RECURSION = YES; 408 | CLANG_WARN_INT_CONVERSION = YES; 409 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 410 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 411 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 412 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 413 | CLANG_WARN_STRICT_PROTOTYPES = YES; 414 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 415 | CLANG_WARN_UNREACHABLE_CODE = YES; 416 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 417 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 418 | COPY_PHASE_STRIP = NO; 419 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 420 | ENABLE_NS_ASSERTIONS = NO; 421 | ENABLE_STRICT_OBJC_MSGSEND = YES; 422 | GCC_C_LANGUAGE_STANDARD = gnu99; 423 | GCC_NO_COMMON_BLOCKS = YES; 424 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 425 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 426 | GCC_WARN_UNDECLARED_SELECTOR = YES; 427 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 428 | GCC_WARN_UNUSED_FUNCTION = YES; 429 | GCC_WARN_UNUSED_VARIABLE = YES; 430 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 431 | MTL_ENABLE_DEBUG_INFO = NO; 432 | SDKROOT = iphoneos; 433 | TARGETED_DEVICE_FAMILY = "1,2"; 434 | VALIDATE_PRODUCT = YES; 435 | }; 436 | name = Release; 437 | }; 438 | 97C147061CF9000F007C117D /* Debug */ = { 439 | isa = XCBuildConfiguration; 440 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 441 | buildSettings = { 442 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 443 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 444 | ENABLE_BITCODE = NO; 445 | FRAMEWORK_SEARCH_PATHS = ( 446 | "$(inherited)", 447 | "$(PROJECT_DIR)/Flutter", 448 | ); 449 | INFOPLIST_FILE = Runner/Info.plist; 450 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 451 | LIBRARY_SEARCH_PATHS = ( 452 | "$(inherited)", 453 | "$(PROJECT_DIR)/Flutter", 454 | ); 455 | PRODUCT_BUNDLE_IDENTIFIER = sgh.timerack.app.timerack; 456 | PRODUCT_NAME = "$(TARGET_NAME)"; 457 | VERSIONING_SYSTEM = "apple-generic"; 458 | }; 459 | name = Debug; 460 | }; 461 | 97C147071CF9000F007C117D /* Release */ = { 462 | isa = XCBuildConfiguration; 463 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 464 | buildSettings = { 465 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 466 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; 467 | ENABLE_BITCODE = NO; 468 | FRAMEWORK_SEARCH_PATHS = ( 469 | "$(inherited)", 470 | "$(PROJECT_DIR)/Flutter", 471 | ); 472 | INFOPLIST_FILE = Runner/Info.plist; 473 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 474 | LIBRARY_SEARCH_PATHS = ( 475 | "$(inherited)", 476 | "$(PROJECT_DIR)/Flutter", 477 | ); 478 | PRODUCT_BUNDLE_IDENTIFIER = sgh.timerack.app.timerack; 479 | PRODUCT_NAME = "$(TARGET_NAME)"; 480 | VERSIONING_SYSTEM = "apple-generic"; 481 | }; 482 | name = Release; 483 | }; 484 | /* End XCBuildConfiguration section */ 485 | 486 | /* Begin XCConfigurationList section */ 487 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 488 | isa = XCConfigurationList; 489 | buildConfigurations = ( 490 | 97C147031CF9000F007C117D /* Debug */, 491 | 97C147041CF9000F007C117D /* Release */, 492 | 249021D3217E4FDB00AE95B9 /* Profile */, 493 | ); 494 | defaultConfigurationIsVisible = 0; 495 | defaultConfigurationName = Release; 496 | }; 497 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 498 | isa = XCConfigurationList; 499 | buildConfigurations = ( 500 | 97C147061CF9000F007C117D /* Debug */, 501 | 97C147071CF9000F007C117D /* Release */, 502 | 249021D4217E4FDB00AE95B9 /* Profile */, 503 | ); 504 | defaultConfigurationIsVisible = 0; 505 | defaultConfigurationName = Release; 506 | }; 507 | /* End XCConfigurationList section */ 508 | }; 509 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 510 | } 511 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 40 | 41 | 42 | 43 | 44 | 45 | 56 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 75 | 77 | 83 | 84 | 85 | 86 | 88 | 89 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application 7 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 8 | [GeneratedPluginRegistrant registerWithRegistry:self]; 9 | // Override point for customization after application launch. 10 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 11 | } 12 | 13 | @end 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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/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 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | timerack 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/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char* argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon20x20@2x~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon20x20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon20x20~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon29x29.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon29x29@2x~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon29x29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon29x29~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon40x40@2x~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon40x40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon40x40~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon76x76@2x~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon76x76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon76x76~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/AppIcon83.5x83.5@2x~ipad.png -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Assets.car -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/Info.plist -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/Info.plist -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Frameworks/App.framework/App: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Frameworks/App.framework/App -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Frameworks/App.framework/Info.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/iphoneos/Runner.app/Frameworks/App.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Info.plist 8 | 9 | Mq+wRuRJiH7IsTeur7zwrEDoks4= 10 | 11 | 12 | files2 13 | 14 | rules 15 | 16 | ^ 17 | 18 | ^.*\.lproj/ 19 | 20 | optional 21 | 22 | weight 23 | 1000 24 | 25 | ^.*\.lproj/locversion.plist$ 26 | 27 | omit 28 | 29 | weight 30 | 1100 31 | 32 | ^Base\.lproj/ 33 | 34 | weight 35 | 1010 36 | 37 | ^version.plist$ 38 | 39 | 40 | rules2 41 | 42 | .*\.dSYM($|/) 43 | 44 | weight 45 | 11 46 | 47 | ^ 48 | 49 | weight 50 | 20 51 | 52 | ^(.*/)?\.DS_Store$ 53 | 54 | omit 55 | 56 | weight 57 | 2000 58 | 59 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 60 | 61 | nested 62 | 63 | weight 64 | 10 65 | 66 | ^.* 67 | 68 | ^.*\.lproj/ 69 | 70 | optional 71 | 72 | weight 73 | 1000 74 | 75 | ^.*\.lproj/locversion.plist$ 76 | 77 | omit 78 | 79 | weight 80 | 1100 81 | 82 | ^Base\.lproj/ 83 | 84 | weight 85 | 1010 86 | 87 | ^Info\.plist$ 88 | 89 | omit 90 | 91 | weight 92 | 20 93 | 94 | ^PkgInfo$ 95 | 96 | omit 97 | 98 | weight 99 | 20 100 | 101 | ^[^/]+$ 102 | 103 | nested 104 | 105 | weight 106 | 10 107 | 108 | ^embedded\.provisionprofile$ 109 | 110 | weight 111 | 20 112 | 113 | ^version\.plist$ 114 | 115 | weight 116 | 20 117 | 118 | 119 | 120 | 121 | -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Flutter -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Frameworks/Flutter.framework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | Flutter 9 | CFBundleIdentifier 10 | io.flutter.flutter 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | Flutter 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/iphoneos/Runner.app/Frameworks/Flutter.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Info.plist 8 | 9 | t54pAsWCLTaEmY9FotN77u3gvwY= 10 | 11 | icudtl.dat 12 | 13 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 14 | 15 | 16 | files2 17 | 18 | icudtl.dat 19 | 20 | hash 21 | 22 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 23 | 24 | hash2 25 | 26 | INkC1JLiLe7AB9SqeZRmj6oaRlkPwCvM96J3pilvsnc= 27 | 28 | 29 | 30 | rules 31 | 32 | ^ 33 | 34 | ^.*\.lproj/ 35 | 36 | optional 37 | 38 | weight 39 | 1000 40 | 41 | ^.*\.lproj/locversion.plist$ 42 | 43 | omit 44 | 45 | weight 46 | 1100 47 | 48 | ^Base\.lproj/ 49 | 50 | weight 51 | 1010 52 | 53 | ^version.plist$ 54 | 55 | 56 | rules2 57 | 58 | .*\.dSYM($|/) 59 | 60 | weight 61 | 11 62 | 63 | ^ 64 | 65 | weight 66 | 20 67 | 68 | ^(.*/)?\.DS_Store$ 69 | 70 | omit 71 | 72 | weight 73 | 2000 74 | 75 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 76 | 77 | nested 78 | 79 | weight 80 | 10 81 | 82 | ^.* 83 | 84 | ^.*\.lproj/ 85 | 86 | optional 87 | 88 | weight 89 | 1000 90 | 91 | ^.*\.lproj/locversion.plist$ 92 | 93 | omit 94 | 95 | weight 96 | 1100 97 | 98 | ^Base\.lproj/ 99 | 100 | weight 101 | 1010 102 | 103 | ^Info\.plist$ 104 | 105 | omit 106 | 107 | weight 108 | 20 109 | 110 | ^PkgInfo$ 111 | 112 | omit 113 | 114 | weight 115 | 20 116 | 117 | ^[^/]+$ 118 | 119 | nested 120 | 121 | weight 122 | 10 123 | 124 | ^embedded\.provisionprofile$ 125 | 126 | weight 127 | 20 128 | 129 | ^version\.plist$ 130 | 131 | weight 132 | 20 133 | 134 | 135 | 136 | 137 | -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Frameworks/Flutter.framework/icudtl.dat -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Info.plist -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/Runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/Runner -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | AppFrameworkInfo.plist 8 | 9 | 5dAMsVjJU7HOUDm3juoD03mgepg= 10 | 11 | AppIcon20x20@2x.png 12 | 13 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 14 | 15 | AppIcon20x20@2x~ipad.png 16 | 17 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 18 | 19 | AppIcon20x20@3x.png 20 | 21 | r9Rba73aDv4puOuwZpeQMhxiTOk= 22 | 23 | AppIcon20x20~ipad.png 24 | 25 | g+mCWJsZjvA3c3nQj3dwYfIM1xg= 26 | 27 | AppIcon29x29.png 28 | 29 | G6v51ewh+ev0yAgORxhdSdL4mI4= 30 | 31 | AppIcon29x29@2x.png 32 | 33 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 34 | 35 | AppIcon29x29@2x~ipad.png 36 | 37 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 38 | 39 | AppIcon29x29@3x.png 40 | 41 | jL+rc7F6J3T26scVfrILuOzdXHc= 42 | 43 | AppIcon29x29~ipad.png 44 | 45 | G6v51ewh+ev0yAgORxhdSdL4mI4= 46 | 47 | AppIcon40x40@2x.png 48 | 49 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 50 | 51 | AppIcon40x40@2x~ipad.png 52 | 53 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 54 | 55 | AppIcon40x40@3x.png 56 | 57 | KUkKJx3gfOIaPK20bee2useTKxc= 58 | 59 | AppIcon40x40~ipad.png 60 | 61 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 62 | 63 | AppIcon60x60@2x.png 64 | 65 | KUkKJx3gfOIaPK20bee2useTKxc= 66 | 67 | AppIcon60x60@3x.png 68 | 69 | 3qMz1bEERH9ZFH70GfxDqHrqaTs= 70 | 71 | AppIcon76x76@2x~ipad.png 72 | 73 | jFYkRZ3iaE8ZrHHwS6e8A146QvA= 74 | 75 | AppIcon76x76~ipad.png 76 | 77 | Ry+dGGmtUJc8AlgJxbvWAGiZC/A= 78 | 79 | AppIcon83.5x83.5@2x~ipad.png 80 | 81 | x7Xp0exJswBAdt9U1n5LNs7jlM0= 82 | 83 | Assets.car 84 | 85 | sMXqaSdqotITM+MOMuS/pLWHlV4= 86 | 87 | Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib 88 | 89 | TV7nGIIMf0aJZDvzo9LBpdQA9tY= 90 | 91 | Base.lproj/LaunchScreen.storyboardc/Info.plist 92 | 93 | n2t8gsDpfE6XkhG31p7IQJRxTxU= 94 | 95 | Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib 96 | 97 | kBo/Vj60zpCG0vea3drVNg0zgx4= 98 | 99 | Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib 100 | 101 | 4P/swoyMINg9B/dZY8AwuYaXSsE= 102 | 103 | Base.lproj/Main.storyboardc/Info.plist 104 | 105 | MDrKFvFWroTb0+KEbQShBcoBvo4= 106 | 107 | Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib 108 | 109 | ZDJmZYr4EgAHojJ5hR4deoIWMew= 110 | 111 | Debug.xcconfig 112 | 113 | pyLh5N02yYGJVdbytsF14fliWbo= 114 | 115 | Frameworks/App.framework/App 116 | 117 | FjYDWe+T1vaRrwbLBAuRvf09xOU= 118 | 119 | Frameworks/App.framework/Info.plist 120 | 121 | Mq+wRuRJiH7IsTeur7zwrEDoks4= 122 | 123 | Frameworks/App.framework/_CodeSignature/CodeResources 124 | 125 | EzUHq0/CVhHX7IqcZQ2HbAlxAKg= 126 | 127 | Frameworks/Flutter.framework/Flutter 128 | 129 | Kn+N0jB3TUJAZE5EgxOsji43/aY= 130 | 131 | Frameworks/Flutter.framework/Info.plist 132 | 133 | t54pAsWCLTaEmY9FotN77u3gvwY= 134 | 135 | Frameworks/Flutter.framework/_CodeSignature/CodeResources 136 | 137 | kaqqqqg33tZHyB/UPaoLF4bBZ0Y= 138 | 139 | Frameworks/Flutter.framework/icudtl.dat 140 | 141 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 142 | 143 | Info.plist 144 | 145 | uqzRaAD/qWxPgklRlzWsRUWALmY= 146 | 147 | PkgInfo 148 | 149 | n57qDP4tZfLD1rCS43W0B4LQjzE= 150 | 151 | embedded.mobileprovision 152 | 153 | hwAM/g1u7/82MActei7HWjAv57A= 154 | 155 | flutter_assets/AssetManifest.json 156 | 157 | oG5/OGn+vw7vp/nu5DUDoZJ4nFc= 158 | 159 | flutter_assets/FontManifest.json 160 | 161 | 8Eg+f3qfbnydCo65zUUTI2L/o/k= 162 | 163 | flutter_assets/LICENSE 164 | 165 | Aj2m26H1eC3Oq+NZdpUGzYdNi3w= 166 | 167 | flutter_assets/fonts/MaterialIcons-Regular.ttf 168 | 169 | nIzDzw7hjOThppiX5OleKNAxtqM= 170 | 171 | flutter_assets/isolate_snapshot_data 172 | 173 | GTQIBlb/3TAQvr9UaZlshrvAcEE= 174 | 175 | flutter_assets/kernel_blob.bin 176 | 177 | GvdXM8b8zT9zbqXdPCrne+lF5hQ= 178 | 179 | flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf 180 | 181 | AlgKy1FbEPcZcd0kdJLLHtOy68I= 182 | 183 | flutter_assets/vm_snapshot_data 184 | 185 | JWnIkj7l0/RrkIC/cd1yX7GOeiU= 186 | 187 | 188 | files2 189 | 190 | AppFrameworkInfo.plist 191 | 192 | hash 193 | 194 | 5dAMsVjJU7HOUDm3juoD03mgepg= 195 | 196 | hash2 197 | 198 | zmN6K6WkF4GUouCIKTHYU8pTli6+46OF2Y9KZpC5ap4= 199 | 200 | 201 | AppIcon20x20@2x.png 202 | 203 | hash 204 | 205 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 206 | 207 | hash2 208 | 209 | pZ6B288r9rCHNZnUOq30sFvAod4dQKjIrFCT9s5ZtCc= 210 | 211 | 212 | AppIcon20x20@2x~ipad.png 213 | 214 | hash 215 | 216 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 217 | 218 | hash2 219 | 220 | pZ6B288r9rCHNZnUOq30sFvAod4dQKjIrFCT9s5ZtCc= 221 | 222 | 223 | AppIcon20x20@3x.png 224 | 225 | hash 226 | 227 | r9Rba73aDv4puOuwZpeQMhxiTOk= 228 | 229 | hash2 230 | 231 | nK/NQl4INFbW5pwHNllTvNEdMttaBJKNnUxR8mHOpHQ= 232 | 233 | 234 | AppIcon20x20~ipad.png 235 | 236 | hash 237 | 238 | g+mCWJsZjvA3c3nQj3dwYfIM1xg= 239 | 240 | hash2 241 | 242 | CrmVcDicAw942mx+hGNd76cIIfLkmdYvTH41IaZXg8Y= 243 | 244 | 245 | AppIcon29x29.png 246 | 247 | hash 248 | 249 | G6v51ewh+ev0yAgORxhdSdL4mI4= 250 | 251 | hash2 252 | 253 | ehIU9ggFIN8xETPVGkZH7XvNB1UZJ04tyotY+FpUjeQ= 254 | 255 | 256 | AppIcon29x29@2x.png 257 | 258 | hash 259 | 260 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 261 | 262 | hash2 263 | 264 | h1qcEQoV064YGJ3Szr2OcOYD3GUfMlIeDIx6vHcZhYk= 265 | 266 | 267 | AppIcon29x29@2x~ipad.png 268 | 269 | hash 270 | 271 | F4uAZKQG3VNg9A/wkGpGHHSU5Tw= 272 | 273 | hash2 274 | 275 | h1qcEQoV064YGJ3Szr2OcOYD3GUfMlIeDIx6vHcZhYk= 276 | 277 | 278 | AppIcon29x29@3x.png 279 | 280 | hash 281 | 282 | jL+rc7F6J3T26scVfrILuOzdXHc= 283 | 284 | hash2 285 | 286 | wwDE3EyXsgBhDCDFNHY/aC1inldQJizJyVPVeE6Ga0U= 287 | 288 | 289 | AppIcon29x29~ipad.png 290 | 291 | hash 292 | 293 | G6v51ewh+ev0yAgORxhdSdL4mI4= 294 | 295 | hash2 296 | 297 | ehIU9ggFIN8xETPVGkZH7XvNB1UZJ04tyotY+FpUjeQ= 298 | 299 | 300 | AppIcon40x40@2x.png 301 | 302 | hash 303 | 304 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 305 | 306 | hash2 307 | 308 | iTeFZ5mBm3ut8QeRDEbNEQXgQD3Z7AYGwdPE1YIFY2Q= 309 | 310 | 311 | AppIcon40x40@2x~ipad.png 312 | 313 | hash 314 | 315 | 6+RuzSsLBnnIDWMreraCQ16JOSY= 316 | 317 | hash2 318 | 319 | iTeFZ5mBm3ut8QeRDEbNEQXgQD3Z7AYGwdPE1YIFY2Q= 320 | 321 | 322 | AppIcon40x40@3x.png 323 | 324 | hash 325 | 326 | KUkKJx3gfOIaPK20bee2useTKxc= 327 | 328 | hash2 329 | 330 | suWsxG0NZIsUhVBVRrw1L/OyEAMFjhGVfYCB6YXcaXM= 331 | 332 | 333 | AppIcon40x40~ipad.png 334 | 335 | hash 336 | 337 | LIjFu3VfH+SgvI8fBPdvWIdMuzg= 338 | 339 | hash2 340 | 341 | pZ6B288r9rCHNZnUOq30sFvAod4dQKjIrFCT9s5ZtCc= 342 | 343 | 344 | AppIcon60x60@2x.png 345 | 346 | hash 347 | 348 | KUkKJx3gfOIaPK20bee2useTKxc= 349 | 350 | hash2 351 | 352 | suWsxG0NZIsUhVBVRrw1L/OyEAMFjhGVfYCB6YXcaXM= 353 | 354 | 355 | AppIcon60x60@3x.png 356 | 357 | hash 358 | 359 | 3qMz1bEERH9ZFH70GfxDqHrqaTs= 360 | 361 | hash2 362 | 363 | 8vIJcNbtnkabGxF9wXOQVknowbbltGNMGQ9JbSjuYpM= 364 | 365 | 366 | AppIcon76x76@2x~ipad.png 367 | 368 | hash 369 | 370 | jFYkRZ3iaE8ZrHHwS6e8A146QvA= 371 | 372 | hash2 373 | 374 | PlbliFKnc8pCMtBpYR4HbMSMmgR5OCpnq5MJ/qISysU= 375 | 376 | 377 | AppIcon76x76~ipad.png 378 | 379 | hash 380 | 381 | Ry+dGGmtUJc8AlgJxbvWAGiZC/A= 382 | 383 | hash2 384 | 385 | fN8X9Ydt+gt6MhIJFI/OtS70FTk1SM4I8308VtNWZyk= 386 | 387 | 388 | AppIcon83.5x83.5@2x~ipad.png 389 | 390 | hash 391 | 392 | x7Xp0exJswBAdt9U1n5LNs7jlM0= 393 | 394 | hash2 395 | 396 | qRVOhVYhQhRZs+Zpa1KDrFjoYC9yZ6LZqKhJC3d0Bcs= 397 | 398 | 399 | Assets.car 400 | 401 | hash 402 | 403 | sMXqaSdqotITM+MOMuS/pLWHlV4= 404 | 405 | hash2 406 | 407 | mwDU6ery+1Odty2WYu2EDMOnpk3U4b3FZr/lbYhOMtw= 408 | 409 | 410 | Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib 411 | 412 | hash 413 | 414 | TV7nGIIMf0aJZDvzo9LBpdQA9tY= 415 | 416 | hash2 417 | 418 | Av/MSPBirPsAA8Wt8eRWD+ho3WADs2eL5HuuCR3ftmM= 419 | 420 | 421 | Base.lproj/LaunchScreen.storyboardc/Info.plist 422 | 423 | hash 424 | 425 | n2t8gsDpfE6XkhG31p7IQJRxTxU= 426 | 427 | hash2 428 | 429 | HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg= 430 | 431 | 432 | Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib 433 | 434 | hash 435 | 436 | kBo/Vj60zpCG0vea3drVNg0zgx4= 437 | 438 | hash2 439 | 440 | OglLEl3VPAYaPgQLMMHXlxpElGRD0wMygixjzm1iOz8= 441 | 442 | 443 | Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib 444 | 445 | hash 446 | 447 | 4P/swoyMINg9B/dZY8AwuYaXSsE= 448 | 449 | hash2 450 | 451 | sbFuRmvwVTGRbXDzyKvbqtWTm9SvKmZk0CGAwQfGQgc= 452 | 453 | 454 | Base.lproj/Main.storyboardc/Info.plist 455 | 456 | hash 457 | 458 | MDrKFvFWroTb0+KEbQShBcoBvo4= 459 | 460 | hash2 461 | 462 | PpvapAjR62rl6Ym4E6hkTgpKmBICxTaQXeUqcpHmmqQ= 463 | 464 | 465 | Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib 466 | 467 | hash 468 | 469 | ZDJmZYr4EgAHojJ5hR4deoIWMew= 470 | 471 | hash2 472 | 473 | K3ibWzqLHp7sX1f5/CfEG2sndzTngwJmudAlf99Dhrg= 474 | 475 | 476 | Debug.xcconfig 477 | 478 | hash 479 | 480 | pyLh5N02yYGJVdbytsF14fliWbo= 481 | 482 | hash2 483 | 484 | UdusQvwNSDY0Qt8bWgxKY6wU+KKLiZFuhlc2LHLgnH8= 485 | 486 | 487 | Frameworks/App.framework/App 488 | 489 | hash 490 | 491 | FjYDWe+T1vaRrwbLBAuRvf09xOU= 492 | 493 | hash2 494 | 495 | blTI3pXgAGtHGHJt/0WCnnv2pPq131P5gUW9PatZtN8= 496 | 497 | 498 | Frameworks/App.framework/Info.plist 499 | 500 | hash 501 | 502 | Mq+wRuRJiH7IsTeur7zwrEDoks4= 503 | 504 | hash2 505 | 506 | psec61HxCx39D44v8dlSAyyCzzyaogxBEN1upiq+rFQ= 507 | 508 | 509 | Frameworks/App.framework/_CodeSignature/CodeResources 510 | 511 | hash 512 | 513 | EzUHq0/CVhHX7IqcZQ2HbAlxAKg= 514 | 515 | hash2 516 | 517 | Xv/UN/4NefJR81nSVvTG+zlged9nUEb0v4Tt7/xKoiU= 518 | 519 | 520 | Frameworks/Flutter.framework/Flutter 521 | 522 | hash 523 | 524 | Kn+N0jB3TUJAZE5EgxOsji43/aY= 525 | 526 | hash2 527 | 528 | Dwd3swwzn2WKotIYmHwoU1b39gTkM3EANJnpg1Z6Jag= 529 | 530 | 531 | Frameworks/Flutter.framework/Info.plist 532 | 533 | hash 534 | 535 | t54pAsWCLTaEmY9FotN77u3gvwY= 536 | 537 | hash2 538 | 539 | rNkCfGOOlGEV12pTK0NAPe4qEK+BF0UWt9vW01XsCjI= 540 | 541 | 542 | Frameworks/Flutter.framework/_CodeSignature/CodeResources 543 | 544 | hash 545 | 546 | kaqqqqg33tZHyB/UPaoLF4bBZ0Y= 547 | 548 | hash2 549 | 550 | JJwAa75wEwApk/hkd8qSRecBa7S/xTSNzS0QnXCn9BA= 551 | 552 | 553 | Frameworks/Flutter.framework/icudtl.dat 554 | 555 | hash 556 | 557 | cjDelfr3ugTDn3+r5icq6Ge1n4Q= 558 | 559 | hash2 560 | 561 | INkC1JLiLe7AB9SqeZRmj6oaRlkPwCvM96J3pilvsnc= 562 | 563 | 564 | embedded.mobileprovision 565 | 566 | hash 567 | 568 | hwAM/g1u7/82MActei7HWjAv57A= 569 | 570 | hash2 571 | 572 | S0kRwYFWc3fHeMlsjNhW7mdFL3V+RMCZJe82eIQWA9M= 573 | 574 | 575 | flutter_assets/AssetManifest.json 576 | 577 | hash 578 | 579 | oG5/OGn+vw7vp/nu5DUDoZJ4nFc= 580 | 581 | hash2 582 | 583 | Sps95+7JukayebvM0TLjL1LW1VXXndpKp/O8tOm9ZR8= 584 | 585 | 586 | flutter_assets/FontManifest.json 587 | 588 | hash 589 | 590 | 8Eg+f3qfbnydCo65zUUTI2L/o/k= 591 | 592 | hash2 593 | 594 | +vlc4DeQNrQqihrbyAQ+GfLyhJJmk3V8JJTsYL09FIs= 595 | 596 | 597 | flutter_assets/LICENSE 598 | 599 | hash 600 | 601 | Aj2m26H1eC3Oq+NZdpUGzYdNi3w= 602 | 603 | hash2 604 | 605 | IeSeFmkk3brcAL3+tCaJai3S4r/Rq0Nbr0UiT3gTbcw= 606 | 607 | 608 | flutter_assets/fonts/MaterialIcons-Regular.ttf 609 | 610 | hash 611 | 612 | nIzDzw7hjOThppiX5OleKNAxtqM= 613 | 614 | hash2 615 | 616 | Wuh7JiGdsCj8cMnXMpa8jtW4ekzRz359zPE0NyQ7iRE= 617 | 618 | 619 | flutter_assets/isolate_snapshot_data 620 | 621 | hash 622 | 623 | GTQIBlb/3TAQvr9UaZlshrvAcEE= 624 | 625 | hash2 626 | 627 | VxrhpM/wbPuP5cBrYkEg60Qdc7P/q69M0mNZy7dCMQg= 628 | 629 | 630 | flutter_assets/kernel_blob.bin 631 | 632 | hash 633 | 634 | GvdXM8b8zT9zbqXdPCrne+lF5hQ= 635 | 636 | hash2 637 | 638 | lS/LbQFev6PmCZVwi1IK+pDS7oUZVBJd8FbotNe5Cq8= 639 | 640 | 641 | flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf 642 | 643 | hash 644 | 645 | AlgKy1FbEPcZcd0kdJLLHtOy68I= 646 | 647 | hash2 648 | 649 | ETQZmaktT/cBMTCTNJd49hWX7HSYPa18vp5zuIwK13c= 650 | 651 | 652 | flutter_assets/vm_snapshot_data 653 | 654 | hash 655 | 656 | JWnIkj7l0/RrkIC/cd1yX7GOeiU= 657 | 658 | hash2 659 | 660 | PZNwH+mzYVVuhkCLVqyDaOdu7cUL6wvn5S9vLvxVcB0= 661 | 662 | 663 | 664 | rules 665 | 666 | ^ 667 | 668 | ^.*\.lproj/ 669 | 670 | optional 671 | 672 | weight 673 | 1000 674 | 675 | ^.*\.lproj/locversion.plist$ 676 | 677 | omit 678 | 679 | weight 680 | 1100 681 | 682 | ^Base\.lproj/ 683 | 684 | weight 685 | 1010 686 | 687 | ^version.plist$ 688 | 689 | 690 | rules2 691 | 692 | .*\.dSYM($|/) 693 | 694 | weight 695 | 11 696 | 697 | ^ 698 | 699 | weight 700 | 20 701 | 702 | ^(.*/)?\.DS_Store$ 703 | 704 | omit 705 | 706 | weight 707 | 2000 708 | 709 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 710 | 711 | nested 712 | 713 | weight 714 | 10 715 | 716 | ^.* 717 | 718 | ^.*\.lproj/ 719 | 720 | optional 721 | 722 | weight 723 | 1000 724 | 725 | ^.*\.lproj/locversion.plist$ 726 | 727 | omit 728 | 729 | weight 730 | 1100 731 | 732 | ^Base\.lproj/ 733 | 734 | weight 735 | 1010 736 | 737 | ^Info\.plist$ 738 | 739 | omit 740 | 741 | weight 742 | 20 743 | 744 | ^PkgInfo$ 745 | 746 | omit 747 | 748 | weight 749 | 20 750 | 751 | ^[^/]+$ 752 | 753 | nested 754 | 755 | weight 756 | 10 757 | 758 | ^embedded\.provisionprofile$ 759 | 760 | weight 761 | 20 762 | 763 | ^version\.plist$ 764 | 765 | weight 766 | 20 767 | 768 | 769 | 770 | 771 | -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/embedded.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/embedded.mobileprovision -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/flutter_assets/AssetManifest.json: -------------------------------------------------------------------------------- 1 | {"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/flutter_assets/FontManifest.json: -------------------------------------------------------------------------------- 1 | [{"fonts":[{"asset":"fonts/MaterialIcons-Regular.ttf"}],"family":"MaterialIcons"},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/flutter_assets/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/flutter_assets/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/flutter_assets/isolate_snapshot_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/flutter_assets/isolate_snapshot_data -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/flutter_assets/kernel_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/flutter_assets/kernel_blob.bin -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/flutter_assets/packages/cupertino_icons/assets/CupertinoIcons.ttf -------------------------------------------------------------------------------- /ios/iphoneos/Runner.app/flutter_assets/vm_snapshot_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djsethi09/timerack-flutter/a7c0a0e165d66804bf1a0e5990b5383d19736f6e/ios/iphoneos/Runner.app/flutter_assets/vm_snapshot_data -------------------------------------------------------------------------------- /ios/pod_inputs.fingerprint: -------------------------------------------------------------------------------- 1 | {"version":"5391447fae6209bb21a89e6a5a6583cac1af9b4b","properties":{},"files":{"/Users/apple/Documents/Projects/SGH_Flutter/timerack-flutter/ios/Flutter/Generated.xcconfig":"c571c369f3965c5691edcdfc2cb98653","/Users/apple/Documents/Projects/SGH_Flutter/timerack-flutter/ios/Podfile":"84828fb42095bf35abbd97ab8fdce565","/Users/apple/Documents/Projects/SGH_Flutter/timerack-flutter/ios/Runner.xcodeproj/project.pbxproj":"970f4e2ace5015fee2f99df7964c0d30"}} -------------------------------------------------------------------------------- /lib/globals.dart: -------------------------------------------------------------------------------- 1 | library timerack.globals; 2 | import 'package:camera/camera.dart'; 3 | import 'package:shared_preferences/shared_preferences.dart'; 4 | 5 | List cameras; 6 | SharedPreferences prefs; -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | import 'package:timerack/register.dart'; 3 | import 'package:flare_flutter/flare_actor.dart'; 4 | import 'globals.dart' as globals; 5 | import 'package:flutter/material.dart'; 6 | import 'package:shared_preferences/shared_preferences.dart'; 7 | import 'package:timerack/timerack.dart'; 8 | import 'package:camera/camera.dart'; 9 | 10 | //void main() => runApp(new TimeRackApp()); 11 | Future main() async { 12 | globals.cameras = await availableCameras(); 13 | globals.prefs = await SharedPreferences.getInstance(); 14 | runApp(new TimeRackApp()); 15 | } 16 | class TimeRackApp extends StatelessWidget { 17 | @override 18 | Widget build(BuildContext context) { 19 | return new MaterialApp( 20 | color: Colors.redAccent, 21 | home: new Splash(), 22 | theme: new ThemeData( 23 | primarySwatch: Colors.green, 24 | ), 25 | ); 26 | } 27 | } 28 | 29 | class Splash extends StatefulWidget { 30 | @override 31 | SplashState createState() => new SplashState(); 32 | } 33 | 34 | class SplashState extends State { 35 | 36 | @override 37 | Widget build(BuildContext context) { 38 | return Scaffold( 39 | body: Stack( 40 | fit: StackFit.expand, 41 | children: [ 42 | Container( 43 | decoration: BoxDecoration(color: Colors.green), 44 | ), 45 | Column( 46 | mainAxisAlignment: MainAxisAlignment.start, 47 | children: [ 48 | Expanded( 49 | flex: 2, 50 | child: Container( 51 | child: Column( 52 | mainAxisAlignment: MainAxisAlignment.center, 53 | children: [ 54 | CircleAvatar( 55 | backgroundColor: Colors.white, 56 | radius: 50.0, 57 | child: Icon( 58 | Icons.timelapse, 59 | color: Colors.green, 60 | size: 50.0, 61 | ), 62 | ), 63 | Padding( 64 | padding: EdgeInsets.only(top: 10.0), 65 | ), 66 | Text( 67 | "Time Rack", 68 | style: TextStyle( 69 | color: Colors.white, 70 | fontWeight: FontWeight.bold, 71 | fontSize: 24.0), 72 | ) 73 | ], 74 | ), 75 | ), 76 | ), 77 | Expanded( 78 | flex: 1, 79 | child: Column( 80 | mainAxisAlignment: MainAxisAlignment.center, 81 | children: [ 82 | CircularProgressIndicator( 83 | valueColor: new AlwaysStoppedAnimation(Colors.white), 84 | ), 85 | Padding( 86 | padding: EdgeInsets.only(top: 20.0), 87 | ), 88 | Text( 89 | "Relax...Loading", 90 | softWrap: true, 91 | textAlign: TextAlign.center, 92 | style: TextStyle( 93 | fontWeight: FontWeight.bold, 94 | fontSize: 18.0, 95 | color: Colors.white), 96 | ) 97 | ], 98 | ), 99 | ) 100 | ], 101 | ) 102 | ], 103 | ), 104 | ); 105 | } 106 | 107 | Future checkFirstSeen() async { 108 | bool _seen = (globals.prefs.getBool('seen') ?? false); 109 | if (_seen) { 110 | Navigator.of(context).pushReplacement( 111 | new MaterialPageRoute(builder: (context) => new TimeRackHome())); 112 | } else { 113 | Navigator.of(context).pushReplacement( 114 | new MaterialPageRoute(builder: (context) => new Register())); 115 | } 116 | } 117 | 118 | @override 119 | void initState() { 120 | super.initState(); 121 | new Timer(new Duration(seconds: 3), () { 122 | checkFirstSeen(); 123 | }); 124 | } 125 | } -------------------------------------------------------------------------------- /lib/models/user.dart: -------------------------------------------------------------------------------- 1 | class User{ 2 | String name; 3 | String companyName; 4 | String empCode; 5 | } -------------------------------------------------------------------------------- /lib/register.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:shared_preferences/shared_preferences.dart'; 3 | import 'package:timerack/models/user.dart'; 4 | import 'package:timerack/timerack.dart'; 5 | import 'package:barcode_scan/barcode_scan.dart'; 6 | import 'globals.dart' as globals; 7 | import 'package:flutter/services.dart'; 8 | class Register extends StatefulWidget { 9 | @override 10 | State createState() { 11 | return RegisterState(); 12 | } 13 | } 14 | class RegisterState extends State{ 15 | final _formKey = GlobalKey(); 16 | User user = new User(); 17 | String result="Click Camera button to scan your QR Code"; 18 | SharedPreferences prefs; 19 | @override 20 | void initState () { 21 | super.initState(); 22 | prefs = globals.prefs; 23 | } 24 | @override 25 | Widget build(BuildContext context) { 26 | return Scaffold( 27 | appBar: AppBar( 28 | title: const Text('Time Rack - Register'), 29 | ), 30 | body: Center( 31 | child: Text( 32 | result, 33 | style: new TextStyle(fontSize: 15.0, fontWeight: FontWeight.bold), 34 | ), 35 | ), 36 | floatingActionButton: FloatingActionButton.extended( 37 | icon: Icon(Icons.camera_alt), 38 | label: Text("Scan"), 39 | onPressed: _scanQR, 40 | ), 41 | floatingActionButtonLocation: FloatingActionButtonLocation.endFloat, 42 | ); 43 | } 44 | Future _scanQR() async { 45 | try { 46 | String qrResult = await BarcodeScanner.scan(); 47 | setState(() { 48 | result = qrResult; 49 | result = "DJ_Sgh_008"; 50 | if(result.split("_").length<3){ 51 | result = "Invalid QR Code"; 52 | }else { 53 | prefs.setString("personName", result.split("_")[0]); 54 | prefs.setString("companyName", result.split("_")[1]); 55 | prefs.setString("empCode", result.split("_")[2]); 56 | prefs.setBool("seen", true); 57 | Navigator.of(context).pushReplacement( 58 | new MaterialPageRoute(builder: (context) => new TimeRackHome())); 59 | } 60 | }); 61 | } on PlatformException catch (ex) { 62 | if (ex.code == BarcodeScanner.CameraAccessDenied) { 63 | setState(() { 64 | result = "Camera permission was denied"; 65 | }); 66 | } else { 67 | setState(() { 68 | result = "Unknown Error $ex"; 69 | }); 70 | } 71 | } on FormatException { 72 | setState(() { 73 | result = "You pressed the back button before scanning anything"; 74 | }); 75 | } catch (ex) { 76 | setState(() { 77 | result = "Unknown Error $ex"; 78 | }); 79 | } 80 | } 81 | } -------------------------------------------------------------------------------- /lib/timerack.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | import 'dart:io'; 3 | import 'globals.dart' as globals; 4 | import 'package:camera/camera.dart'; 5 | import 'package:flutter/material.dart'; 6 | import 'package:path_provider/path_provider.dart'; 7 | import 'package:dio/dio.dart'; 8 | import 'package:location/location.dart'; 9 | import 'package:flutter/services.dart'; 10 | class TimeRackHome extends StatefulWidget { 11 | 12 | @override 13 | _TimeRackHomeState createState() { 14 | return _TimeRackHomeState(); 15 | } 16 | } 17 | 18 | 19 | 20 | class _TimeRackHomeState extends State { 21 | CameraController controller; 22 | String imagePath; 23 | final GlobalKey _scaffoldKey = GlobalKey(); 24 | List cameras = globals.cameras; 25 | StreamSubscription> _locationSubscription; 26 | Location _location = new Location(); 27 | bool _permission = false; 28 | String error; 29 | Map _currentLocation; 30 | bool currentWidget = true; 31 | bool apiCall = false; 32 | String filePath; 33 | bool _isCheckInOutDisabled; 34 | String _punchText="Check In"; 35 | var response; 36 | @override 37 | void initState() { 38 | super.initState(); 39 | 40 | initPlatformState(); 41 | 42 | _locationSubscription = 43 | _location.onLocationChanged().listen((Map result) { 44 | setState(() { 45 | _currentLocation = result; 46 | }); 47 | }); 48 | } 49 | // Platform messages are asynchronous, so we initialize in an async method. 50 | initPlatformState() async { 51 | Map location; 52 | // Platform messages may fail, so we use a try/catch PlatformException. 53 | 54 | try { 55 | _permission = await _location.hasPermission(); 56 | location = await _location.getLocation(); 57 | 58 | 59 | error = null; 60 | } on PlatformException catch (e) { 61 | if (e.code == 'PERMISSION_DENIED') { 62 | error = 'Permission denied'; 63 | } else if (e.code == 'PERMISSION_DENIED_NEVER_ASK') { 64 | error = 'Permission denied - please ask the user to enable it from the app settings'; 65 | } 66 | 67 | location = null; 68 | } 69 | 70 | // If the widget was removed from the tree while the asynchronous platform 71 | // message was in flight, we want to discard the reply rather than calling 72 | // setState to update our non-existent appearance. 73 | //if (!mounted) return; 74 | 75 | setState(() { 76 | _isCheckInOutDisabled = true; 77 | if(globals.prefs.getInt("inOrOut")==0) {_punchText = 'Check Out';}else{_punchText = 'Check In';} 78 | }); 79 | 80 | } 81 | 82 | @override 83 | Widget build(BuildContext context) { 84 | return Scaffold( 85 | key: _scaffoldKey, 86 | appBar: AppBar( 87 | title: Text('Time Rack :'+' '+globals.prefs.getString("companyName")+' '+globals.prefs.getString("personName")+'('+globals.prefs.getString("empCode")+')'), 88 | ), 89 | body: Column( 90 | children: [ 91 | Expanded( 92 | child: Container( 93 | child: Padding( 94 | padding: const EdgeInsets.all(1.0), 95 | child: Center( 96 | child: _cameraPreviewWidget(), 97 | ), 98 | ), 99 | decoration: BoxDecoration( 100 | color: Colors.black, 101 | border: Border.all( 102 | color: controller != null && controller.value.isRecordingVideo 103 | ? Colors.green 104 | : Colors.grey, 105 | width: 3.0, 106 | ), 107 | ), 108 | ), 109 | ), 110 | //_captureControlRowWidget(), 111 | Padding( 112 | padding: const EdgeInsets.all(5.0), 113 | child: Row( 114 | mainAxisAlignment: MainAxisAlignment.center, 115 | mainAxisSize: MainAxisSize.max, 116 | children: [ 117 | _punchTogglesRowWidget(), 118 | new Container( 119 | margin: const EdgeInsets.only(left: 20.0), 120 | child:RaisedButton( 121 | onPressed: 122 | /*if(!_isCheckInOutDisabled) { 123 | _isCheckInOutDisabled = true; 124 | punchAttendance(); 125 | }else{ 126 | _scaffoldKey.currentState.showSnackBar( 127 | new SnackBar( 128 | duration: new Duration(seconds: 2), 129 | content: 130 | new Text("Please take image first") 131 | )); 132 | }*/ 133 | 134 | controller != null && 135 | controller.value.isInitialized && 136 | !controller.value.isRecordingVideo 137 | ? onTakePictureButtonPressed 138 | : null 139 | , 140 | child: Text(_punchText), 141 | padding: const EdgeInsets.all(8.0), 142 | textColor: Colors.white, 143 | color: Colors.green, 144 | ), 145 | ) 146 | //_thumbnailWidget(), 147 | ], 148 | ), 149 | ), 150 | ], 151 | ), 152 | ); 153 | } 154 | 155 | /// Returns a suitable camera icon for [direction]. 156 | IconData getCameraLensIcon(CameraLensDirection direction) { 157 | switch (direction) { 158 | case CameraLensDirection.back: 159 | return Icons.camera_rear; 160 | case CameraLensDirection.front: 161 | return Icons.camera_front; 162 | case CameraLensDirection.external: 163 | return Icons.camera; 164 | } 165 | throw ArgumentError('Unknown lens direction'); 166 | } 167 | 168 | void logError(String code, String message) => 169 | print('Error: $code\nError Message: $message'); 170 | 171 | /// Display the preview from the camera (or a message if the preview is not available). 172 | Widget _cameraPreviewWidget() { 173 | if (controller == null || !controller.value.isInitialized) { 174 | if (cameras.isEmpty) { 175 | return const Text('No camera found'); 176 | } else { 177 | onNewCameraSelected(cameras[1]); 178 | } 179 | } 180 | return AspectRatio( 181 | aspectRatio: controller.value.aspectRatio, 182 | child: CameraPreview(controller), 183 | ); 184 | //} 185 | } 186 | 187 | 188 | Widget _captureControlRowWidget() { 189 | return Row( 190 | mainAxisAlignment: MainAxisAlignment.spaceEvenly, 191 | mainAxisSize: MainAxisSize.max, 192 | children: [ 193 | IconButton( 194 | icon: const Icon(Icons.camera_alt), 195 | color: Colors.green, 196 | onPressed: controller != null && 197 | controller.value.isInitialized && 198 | !controller.value.isRecordingVideo 199 | ? onTakePictureButtonPressed 200 | : null, 201 | ), 202 | ], 203 | ); 204 | } 205 | 206 | /// Display a row of toggle to select the camera (or a message if no camera is available). 207 | Widget _punchTogglesRowWidget() { 208 | final List toggles = []; 209 | 210 | if (cameras.isEmpty) { 211 | return const Text('No camera found'); 212 | } else { 213 | for (CameraDescription cameraDescription in cameras) { 214 | toggles.add( 215 | SizedBox( 216 | width: 90.0, 217 | child: RadioListTile( 218 | title: Icon(getCameraLensIcon(cameraDescription.lensDirection)), 219 | groupValue: controller?.description, 220 | value: cameraDescription, 221 | onChanged: controller != null && controller.value.isRecordingVideo 222 | ? null 223 | : onNewCameraSelected, 224 | ), 225 | ) 226 | ); 227 | 228 | } 229 | } 230 | 231 | return Row(children: toggles); 232 | } 233 | 234 | String timestamp() => DateTime.now().millisecondsSinceEpoch.toString(); 235 | 236 | void showInSnackBar(String message) { 237 | _scaffoldKey.currentState.showSnackBar(SnackBar(content: Text(message))); 238 | } 239 | 240 | void onNewCameraSelected(CameraDescription cameraDescription) async { 241 | if (controller != null) { 242 | await controller.dispose(); 243 | } 244 | controller = CameraController(cameraDescription, ResolutionPreset.high); 245 | 246 | // If the controller is updated then update the UI. 247 | controller.addListener(() { 248 | if (mounted) setState(() {}); 249 | if (controller.value.hasError) { 250 | //showInSnackBar('Camera error ${controller.value.errorDescription}'); 251 | } 252 | }); 253 | 254 | try { 255 | await controller.initialize(); 256 | } on CameraException catch (e) { 257 | _showCameraException(e); 258 | } 259 | 260 | if (mounted) { 261 | setState(() {}); 262 | } 263 | } 264 | 265 | void onTakePictureButtonPressed() { 266 | _scaffoldKey.currentState.showSnackBar( 267 | new SnackBar( 268 | //duration: new Duration(seconds: 4), 269 | content: 270 | new Row( 271 | children: [ 272 | new CircularProgressIndicator(), 273 | globals.prefs.getInt("inOrOut") == 0 274 | ? new Text(" Checking Out...") 275 | : new Text(" Checking In...") 276 | ], 277 | ), 278 | )); 279 | takePicture().then((String filePath) { 280 | if (mounted) { 281 | setState(() { 282 | imagePath = filePath; 283 | punchAttendance(); 284 | _isCheckInOutDisabled = false; 285 | }); 286 | //if (filePath != null) showInSnackBar('Picture saved to $filePath'); 287 | } 288 | }); 289 | } 290 | 291 | Future takePicture() async { 292 | if (!controller.value.isInitialized) { 293 | showInSnackBar('Error: select a camera first.'); 294 | return null; 295 | } 296 | final Directory extDir = await getApplicationDocumentsDirectory(); 297 | final String dirPath = '${extDir.path}/Pictures/timerack'; 298 | await Directory(dirPath).create(recursive: true); 299 | 300 | filePath = '$dirPath/${timestamp()}.jpg'; 301 | 302 | if (controller.value.isTakingPicture) { 303 | // A capture is already pending, do nothing. 304 | return null; 305 | } 306 | 307 | try { 308 | await controller.takePicture(filePath); 309 | } on CameraException catch (e) { 310 | _showCameraException(e); 311 | return null; 312 | } 313 | return filePath; 314 | } 315 | 316 | void _showCameraException(CameraException e) { 317 | logError(e.code, e.description); 318 | showInSnackBar('Error: ${e.code}\n${e.description}'); 319 | } 320 | 321 | punchAttendance() { 322 | var dio = new Dio(); 323 | dio.options.baseUrl = ""; 324 | dio.options.connectTimeout = 5000; //5s 325 | dio.options.receiveTimeout=5000; 326 | 327 | FormData formData = new FormData.from({ 328 | "empCode": globals.prefs.getString("empCode"), 329 | "inOrOut": globals.prefs.getInt("inOrOut"), 330 | "location":_currentLocation["latitude"].toString()+","+ _currentLocation["longitude"].toString(), 331 | "file": new UploadFileInfo(new File(filePath),globals.prefs.getString("empCode")+'_'+timestamp()+'.jpg') 332 | }); 333 | // Send FormData 334 | dio.post("/api", data: formData).then((response){ 335 | File(filePath).delete(); 336 | if (response.statusCode == 200) { 337 | _scaffoldKey.currentState.showSnackBar( 338 | new SnackBar( 339 | duration: new Duration(seconds: 2), content: 340 | new Row( 341 | children: [ 342 | globals.prefs.getInt("inOrOut")==0?new Text("Checked Out succesfully"):new Text("Checked In succesfully") 343 | ], 344 | ), 345 | )); 346 | if(globals.prefs.getInt("inOrOut")==0 || globals.prefs.getInt("inOrOut")==null){ 347 | globals.prefs.setInt("inOrOut",1); 348 | }else{ 349 | globals.prefs.setInt("inOrOut",0); 350 | } 351 | setState(() { 352 | if(globals.prefs.getInt("inOrOut")==0) {_punchText = 'Check Out';}else{_punchText = 'Check In';} 353 | }); 354 | }else{ 355 | _scaffoldKey.currentState.showSnackBar( 356 | new SnackBar( 357 | duration: new Duration(seconds: 2), 358 | content: 359 | new Row( 360 | children: [ 361 | new Text("Some error occured") 362 | ], 363 | ), 364 | )); 365 | } 366 | }); 367 | return response; 368 | } 369 | } 370 | 371 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: timerack 2 | description: Attendance Marker 3 | 4 | # The following defines the version and build number for your application. 5 | # A version number is three numbers separated by dots, like 1.2.43 6 | # followed by an optional build number separated by a +. 7 | # Both the version and the builder number may be overridden in flutter 8 | # build by specifying --build-name and --build-number, respectively. 9 | # Read more about versioning at semver.org. 10 | version: 1.0.0+1 11 | 12 | environment: 13 | sdk: ">=2.0.0-dev.68.0 <3.0.0" 14 | 15 | dependencies: 16 | flutter: 17 | sdk: flutter 18 | shared_preferences: ^0.4.3 19 | # The following adds the Cupertino Icons font to your application. 20 | # Use with the CupertinoIcons class for iOS style icons. 21 | cupertino_icons: ^0.1.2 22 | barcode_scan: "^0.0.4" 23 | http: ^0.12.0 24 | location: ^1.4.1 25 | dio: ^1.0.6 26 | flare_flutter: ^1.0.0 27 | 28 | dev_dependencies: 29 | flutter_test: 30 | sdk: flutter 31 | path_provider: ^0.4.1 32 | video_player: ^0.5.2 33 | camera : ^0.2.4 34 | 35 | # For information on the generic Dart part of this file, see the 36 | # following page: https://www.dartlang.org/tools/pub/pubspec 37 | 38 | # The following section is specific to Flutter. 39 | flutter: 40 | 41 | # The following line ensures that the Material Icons font is 42 | # included with your application, so that you can use the icons in 43 | # the material Icons class. 44 | uses-material-design: true 45 | 46 | # To add assets to your application, add an assets section, like this: 47 | # assets: 48 | # - images/a_dot_burr.jpeg 49 | # - images/a_dot_ham.jpeg 50 | 51 | # An image asset can refer to one or more resolution-specific "variants", see 52 | # https://flutter.io/assets-and-images/#resolution-aware. 53 | 54 | # For details regarding adding assets from package dependencies, see 55 | # https://flutter.io/assets-and-images/#from-packages 56 | 57 | # To add custom fonts to your application, add a fonts section here, 58 | # in this "flutter" section. Each entry in this list should have a 59 | # "family" key with the font family name, and a "fonts" key with a 60 | # list giving the asset and other descriptors for the font. For 61 | # example: 62 | # fonts: 63 | # - family: Schyler 64 | # fonts: 65 | # - asset: fonts/Schyler-Regular.ttf 66 | # - asset: fonts/Schyler-Italic.ttf 67 | # style: italic 68 | # - family: Trajan Pro 69 | # fonts: 70 | # - asset: fonts/TrajanPro.ttf 71 | # - asset: fonts/TrajanPro_Bold.ttf 72 | # weight: 700 73 | # 74 | # For details regarding fonts from package dependencies, 75 | # see https://flutter.io/custom-fonts/#from-packages 76 | -------------------------------------------------------------------------------- /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:timerack/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(TimeRackApp()); 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 | --------------------------------------------------------------------------------