├── .gitattributes ├── TDSmeter ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── slumberjer │ │ │ │ │ └── tdsmeter │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── images │ │ ├── phonecam.png │ │ └── splash.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── mainscreen.dart │ ├── newtdsscreen.dart │ ├── splashscreen.dart │ ├── tds.dart │ └── tdsdetails.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── bmi_calculator ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── bmi_calculator │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── audio │ │ ├── fail.wav │ │ └── ok.wav │ └── images │ │ ├── bmibiasa.jpg │ │ ├── bmikurang.jpg │ │ ├── bmilalai.jpg │ │ └── bmilebih.jpg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── cyctracker ├── .gitignore ├── .metadata ├── .vscode │ └── settings.json ├── README.md ├── android │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── slumberjer │ │ │ │ │ └── cyctracker │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── decor ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── slumberjer │ │ │ │ │ └── decor │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── decor.png │ │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── images │ │ ├── login.jpg │ │ ├── mainpage.jpg │ │ ├── phonecam.png │ │ └── splash.jpg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── mainscreen.dart │ ├── mapscreen.dart │ ├── maputils.dart │ ├── newpipescreen.dart │ ├── pipe.dart │ ├── pipedetails.dart │ ├── reportscreen.dart │ └── splashscreen.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── eve ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── eve │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── images │ │ ├── register.jfif │ │ ├── registration.png │ │ └── uumlogo.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── forgotpage.dart │ ├── loginpage.dart │ ├── mainpage.dart │ ├── registerpage.dart │ └── splashpage.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── foodninja_fb ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── foodninja_fb │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── images │ │ └── dart.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── email_login.dart │ ├── email_signup.dart │ ├── home.dart │ ├── main.dart │ └── signup.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── grocery ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── slumberjer │ │ │ │ │ └── grocery │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── images │ │ ├── login.jpg │ │ ├── mainpage.jpg │ │ ├── phonecam.png │ │ └── splash.jpg ├── grocery │ ├── grocery.sql │ ├── php │ │ ├── buycredit.php │ │ ├── buycreditupdate.php │ │ ├── dbconnect.php │ │ ├── delete_cart.php │ │ ├── insert_cart.php │ │ ├── insert_product.php │ │ ├── load_cart.php │ │ ├── load_carthistory.php │ │ ├── load_cartquantity.php │ │ ├── load_paymenthistory.php │ │ ├── load_products.php │ │ ├── login.php │ │ ├── login_user.php │ │ ├── payment.php │ │ ├── payment_update.php │ │ ├── paymentsc.php │ │ ├── register_user.php │ │ ├── update_cart.php │ │ ├── update_profile.php │ │ └── upload_image.php │ ├── productimage │ │ ├── 1001.jpg │ │ ├── 1002.jpg │ │ ├── 1003.jpg │ │ ├── 1004.jpg │ │ ├── 1005.jpg │ │ ├── 1006.jpg │ │ ├── 1007.jpg │ │ ├── 1008.jpg │ │ ├── 1009.jpg │ │ ├── 1010.jpg │ │ ├── 1011.jpg │ │ ├── 1012.jpg │ │ ├── 1013.jpg │ │ ├── 1014.jpg │ │ ├── 1015.jpg │ │ ├── 1016.jpg │ │ ├── 1017.jpg │ │ ├── 1018.jpg │ │ ├── 1019.jpg │ │ ├── 1020.jpg │ │ ├── 1021.jpg │ │ ├── 1022.jpg │ │ ├── 1023.jpg │ │ ├── 1024.jpg │ │ ├── 1025.jpg │ │ ├── 1026.jpg │ │ ├── 4001724818908.jpg │ │ ├── 8690890200011.jpg │ │ ├── 9300677002385.jpg │ │ ├── 9310155100137.jpg │ │ ├── 9310155204132.jpg │ │ ├── 9555018501014.jpg │ │ ├── 9555022301884.jpg │ │ ├── 9555222603795.jpg │ │ ├── 9555279103231.jpg │ │ ├── 9555719712993.jpg │ │ ├── 9556031095856.jpg │ │ ├── 9556046700004.jpg │ │ ├── 9556107301102.jpg │ │ ├── 9556231111110.jpg │ │ ├── 9556276000257.jpg │ │ ├── 9556288049404.jpg │ │ ├── 9556570005309.jpg │ │ ├── 9556755530015.jpg │ │ ├── 9557277320627.jpg │ │ ├── 9557305002402.jpg │ │ ├── 9557305004116.jpg │ │ ├── 9557368132061.jpg │ │ └── 9557941442037.jpg │ └── profileimages │ │ ├── .jpg │ │ ├── 123456789.jpg │ │ ├── a.jpg │ │ ├── admin@grocery.com.jpg │ │ ├── alanberamboi@gmail.com_.jpg │ │ ├── ben@gmail.com.jpg │ │ ├── slumberjer@gmail.com.jpg │ │ └── unregistered@grocery.com.jpg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── adminproduct.dart │ ├── cartscreen.dart │ ├── editproduct.dart │ ├── loginscreen.dart │ ├── mainscreen.dart │ ├── newproduct.dart │ ├── order.dart │ ├── orderdetailscreen.dart │ ├── payment.dart │ ├── paymenthistoryscreen.dart │ ├── product.dart │ ├── profilescreen.dart │ ├── registerscreen.dart │ ├── splashscreen.dart │ ├── states.dart │ ├── storecredit.dart │ └── user.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── mypasar ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── slumberjer │ │ │ │ │ └── mypasar │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── settings_aar.gradle ├── assets │ └── images │ │ ├── login.jpg │ │ ├── mainpage.jpg │ │ ├── phonecam.png │ │ ├── phonecam2.png │ │ └── splash.jpg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── custbuyscreen.dart │ ├── editproduct.dart │ ├── loginscreen.dart │ ├── main.dart │ ├── mainscreen.dart │ ├── newproductscreen.dart │ ├── product.dart │ ├── registerscreen.dart │ ├── sellersellscreen.dart │ ├── splashscreen.dart │ ├── states.dart │ ├── tabscreen1.dart │ ├── tabscreen2.dart │ ├── tabscreen3.dart │ └── user.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── projek_ayam_fb ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── slumberjer │ │ │ │ │ └── projek_ayam │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── log.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── settings_aar.gradle ├── assets │ └── images │ │ ├── camera.png │ │ ├── log.png │ │ ├── login.png │ │ ├── phonecam.png │ │ └── splash.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── mainscreen.dart │ ├── newlogscreen.dart │ ├── participantscreen.dart │ ├── records.dart │ ├── registerscreen.dart │ ├── splashscreen.dart │ └── user.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── simple_calculator ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── simple_calculator │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── images │ │ └── mycalculator.jpg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── vtrack_user ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── slumberjer │ │ │ │ │ └── vtrack_user │ │ │ │ │ └── MainActivity.kt │ │ │ └── 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 │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── settings_aar.gradle ├── assets │ └── images │ │ ├── login.jpg │ │ ├── mainpage.jpg │ │ ├── phonecam.png │ │ ├── phonecam2.png │ │ └── splash.jpg ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── mainscreen.dart │ ├── routescreen.dart │ └── splashscreen.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart └── wfh_attendance ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── wfh_attendance │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── wfh.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── settings_aar.gradle ├── assets └── images │ ├── login.jpg │ ├── mainpage.jpg │ ├── registration.jpg │ └── splash.jpg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── loginscreen.dart ├── mainscreen.dart ├── registerscreen.dart ├── splashscreen.dart └── user.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /TDSmeter/.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: 2ae34518b87dd891355ed6c6ea8cb68c4d52bb9d 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /TDSmeter/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "TDSmeter", 9 | "request": "launch", 10 | "type": "dart", 11 | "program": "lib/splashscreen.dart" 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /TDSmeter/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /TDSmeter/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TDSmeter/android/app/src/main/kotlin/com/slumberjer/tdsmeter/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.slumberjer.tdsmeter 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /TDSmeter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TDSmeter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TDSmeter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TDSmeter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TDSmeter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TDSmeter/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TDSmeter/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /TDSmeter/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /TDSmeter/assets/images/phonecam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/assets/images/phonecam.png -------------------------------------------------------------------------------- /TDSmeter/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/assets/images/splash.png -------------------------------------------------------------------------------- /TDSmeter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /TDSmeter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/TDSmeter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /TDSmeter/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. -------------------------------------------------------------------------------- /TDSmeter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /bmi_calculator/.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: fabeb2a16f1d008ab8230f450c49141d35669798 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /bmi_calculator/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /bmi_calculator/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bmi_calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bmi_calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bmi_calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bmi_calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bmi_calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bmi_calculator/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bmi_calculator/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /bmi_calculator/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /bmi_calculator/assets/audio/fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/assets/audio/fail.wav -------------------------------------------------------------------------------- /bmi_calculator/assets/audio/ok.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/assets/audio/ok.wav -------------------------------------------------------------------------------- /bmi_calculator/assets/images/bmibiasa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/assets/images/bmibiasa.jpg -------------------------------------------------------------------------------- /bmi_calculator/assets/images/bmikurang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/assets/images/bmikurang.jpg -------------------------------------------------------------------------------- /bmi_calculator/assets/images/bmilalai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/assets/images/bmilalai.jpg -------------------------------------------------------------------------------- /bmi_calculator/assets/images/bmilebih.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/assets/images/bmilebih.jpg -------------------------------------------------------------------------------- /bmi_calculator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /bmi_calculator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/bmi_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /bmi_calculator/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. -------------------------------------------------------------------------------- /bmi_calculator/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /cyctracker/.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: b041144f833e05cf463b8887fa12efdec9493488 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /cyctracker/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.exclude": { 3 | "**/.classpath": true, 4 | "**/.project": true, 5 | "**/.settings": true, 6 | "**/.factorypath": true 7 | } 8 | } -------------------------------------------------------------------------------- /cyctracker/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /cyctracker/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | arguments= 2 | auto.sync=false 3 | build.scans.enabled=false 4 | connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) 5 | connection.project.dir= 6 | eclipse.preferences.version=1 7 | gradle.user.home= 8 | java.home=C\:/PROGRA~1/Java/JDK18~1.0_1 9 | jvm.arguments= 10 | offline.mode=false 11 | override.workspace.settings=true 12 | show.console.view=true 13 | show.executions.view=true 14 | -------------------------------------------------------------------------------- /cyctracker/android/app/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /cyctracker/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /cyctracker/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cyctracker/android/app/src/main/kotlin/com/slumberjer/cyctracker/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.slumberjer.cyctracker 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /cyctracker/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /cyctracker/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /cyctracker/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cyctracker/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cyctracker/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cyctracker/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cyctracker/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /cyctracker/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /cyctracker/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /cyctracker/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/cyctracker/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /cyctracker/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. -------------------------------------------------------------------------------- /cyctracker/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /decor/.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: b041144f833e05cf463b8887fa12efdec9493488 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /decor/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "Flutter", 9 | "request": "launch", 10 | "type": "dart", 11 | "program": "lib/splashscreen.dart" 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /decor/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /decor/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /decor/android/app/src/main/kotlin/com/slumberjer/decor/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.slumberjer.decor 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /decor/android/app/src/main/res/mipmap-hdpi/decor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/android/app/src/main/res/mipmap-hdpi/decor.png -------------------------------------------------------------------------------- /decor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /decor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /decor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /decor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /decor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /decor/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /decor/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /decor/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /decor/assets/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/assets/images/login.jpg -------------------------------------------------------------------------------- /decor/assets/images/mainpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/assets/images/mainpage.jpg -------------------------------------------------------------------------------- /decor/assets/images/phonecam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/assets/images/phonecam.png -------------------------------------------------------------------------------- /decor/assets/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/assets/images/splash.jpg -------------------------------------------------------------------------------- /decor/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /decor/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /decor/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /decor/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /decor/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /decor/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /decor/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /decor/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /decor/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /decor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/decor/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /decor/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. -------------------------------------------------------------------------------- /decor/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /decor/lib/maputils.dart: -------------------------------------------------------------------------------- 1 | import 'package:url_launcher/url_launcher.dart'; 2 | 3 | class MapUtils { 4 | MapUtils._(); 5 | 6 | static Future openMap(double latitude, double longitude) async { 7 | String googleUrl = 8 | 'https://www.google.com/maps/search/?api=1&query=$latitude,$longitude'; 9 | if (await canLaunch(googleUrl)) { 10 | await launch(googleUrl); 11 | } else { 12 | throw 'Could not open the map.'; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /eve/.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: fabeb2a16f1d008ab8230f450c49141d35669798 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /eve/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "Flutter", 9 | "request": "launch", 10 | "type": "dart", 11 | "program": "lib/splashpage.dart" 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /eve/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /eve/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /eve/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /eve/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /eve/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /eve/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /eve/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /eve/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /eve/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /eve/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /eve/assets/images/register.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/assets/images/register.jfif -------------------------------------------------------------------------------- /eve/assets/images/registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/assets/images/registration.png -------------------------------------------------------------------------------- /eve/assets/images/uumlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/assets/images/uumlogo.png -------------------------------------------------------------------------------- /eve/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /eve/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /eve/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /eve/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /eve/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /eve/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/eve/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /eve/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. -------------------------------------------------------------------------------- /eve/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /eve/lib/forgotpage.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class ForgotPage extends StatefulWidget { 4 | @override 5 | _ForgotPageState createState() => _ForgotPageState(); 6 | } 7 | 8 | class _ForgotPageState extends State { 9 | @override 10 | Widget build(BuildContext context) { 11 | return Container( 12 | 13 | ); 14 | } 15 | } -------------------------------------------------------------------------------- /foodninja_fb/.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: 2ae34518b87dd891355ed6c6ea8cb68c4d52bb9d 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /foodninja_fb/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/main/kotlin/com/example/foodninja_fb/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.foodninja_fb 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /foodninja_fb/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /foodninja_fb/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /foodninja_fb/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /foodninja_fb/assets/images/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/assets/images/dart.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/foodninja_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /foodninja_fb/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. -------------------------------------------------------------------------------- /foodninja_fb/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /grocery/.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: fabeb2a16f1d008ab8230f450c49141d35669798 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /grocery/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /grocery/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /grocery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /grocery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /grocery/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /grocery/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /grocery/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /grocery/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /grocery/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /grocery/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /grocery/assets/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/assets/images/login.jpg -------------------------------------------------------------------------------- /grocery/assets/images/mainpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/assets/images/mainpage.jpg -------------------------------------------------------------------------------- /grocery/assets/images/phonecam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/assets/images/phonecam.png -------------------------------------------------------------------------------- /grocery/assets/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/assets/images/splash.jpg -------------------------------------------------------------------------------- /grocery/grocery/php/dbconnect.php: -------------------------------------------------------------------------------- 1 | connect_error) { 9 | die("Connection failed: " . $conn->connect_error); 10 | } 11 | ?> -------------------------------------------------------------------------------- /grocery/grocery/php/login.php: -------------------------------------------------------------------------------- 1 | query($sql); 10 | if ($result->num_rows > 0) { 11 | echo "success"; 12 | }else{ 13 | echo "failed"; 14 | } -------------------------------------------------------------------------------- /grocery/grocery/php/update_cart.php: -------------------------------------------------------------------------------- 1 | query($sqlupdate) === true) 12 | { 13 | echo "success"; 14 | } 15 | else 16 | { 17 | echo "failed"; 18 | } 19 | 20 | $conn->close(); 21 | ?> -------------------------------------------------------------------------------- /grocery/grocery/php/upload_image.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grocery/grocery/productimage/1001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1001.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1002.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1003.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1004.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1005.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1006.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1007.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1008.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1009.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1010.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1011.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1012.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1013.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1014.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1015.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1016.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1017.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1018.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1019.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1020.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1021.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1022.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1023.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1024.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1025.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/1026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/1026.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/4001724818908.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/4001724818908.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/8690890200011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/8690890200011.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9300677002385.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9300677002385.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9310155100137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9310155100137.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9310155204132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9310155204132.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9555018501014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9555018501014.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9555022301884.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9555022301884.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9555222603795.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9555222603795.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9555279103231.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9555279103231.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9555719712993.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9555719712993.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556031095856.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556031095856.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556046700004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556046700004.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556107301102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556107301102.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556231111110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556231111110.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556276000257.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556276000257.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556288049404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556288049404.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556570005309.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556570005309.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9556755530015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9556755530015.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9557277320627.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9557277320627.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9557305002402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9557305002402.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9557305004116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9557305004116.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9557368132061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9557368132061.jpg -------------------------------------------------------------------------------- /grocery/grocery/productimage/9557941442037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/productimage/9557941442037.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/123456789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/123456789.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/a.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/admin@grocery.com.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/admin@grocery.com.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/alanberamboi@gmail.com_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/alanberamboi@gmail.com_.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/ben@gmail.com.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/ben@gmail.com.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/slumberjer@gmail.com.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/slumberjer@gmail.com.jpg -------------------------------------------------------------------------------- /grocery/grocery/profileimages/unregistered@grocery.com.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/grocery/profileimages/unregistered@grocery.com.jpg -------------------------------------------------------------------------------- /grocery/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /grocery/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /grocery/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /grocery/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /grocery/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /grocery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/grocery/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /grocery/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. -------------------------------------------------------------------------------- /grocery/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /grocery/lib/order.dart: -------------------------------------------------------------------------------- 1 | class Order { 2 | String total, orderid, billid, dateorder; 3 | 4 | Order( 5 | {this.total, 6 | this.orderid, 7 | this.billid, 8 | this.dateorder, 9 | }); 10 | } 11 | -------------------------------------------------------------------------------- /grocery/lib/product.dart: -------------------------------------------------------------------------------- 1 | class Product { 2 | String pid, name, price, quantity, weigth, type, date; 3 | Product({ 4 | this.pid, 5 | this.name, 6 | this.price, 7 | this.quantity, 8 | this.weigth, 9 | this.type, 10 | this.date, 11 | }); 12 | } 13 | -------------------------------------------------------------------------------- /grocery/lib/user.dart: -------------------------------------------------------------------------------- 1 | class User { 2 | String name, email, phone, password, credit, datereg,quantity; 3 | 4 | User( 5 | {this.name, 6 | this.email, 7 | this.password, 8 | this.phone, 9 | this.credit, 10 | this.datereg,this.quantity}); 11 | } 12 | -------------------------------------------------------------------------------- /mypasar/.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: 2294d75bfa8d067ba90230c0fc2268f3636d7584 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /mypasar/README.md: -------------------------------------------------------------------------------- 1 | # mypasar 2 | 3 | A new Flutter project. 4 | 5 | ## Getting Started 6 | 7 | -This project contain tabbed navigation 8 | -------------------------------------------------------------------------------- /mypasar/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /mypasar/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /mypasar/android/app/src/main/kotlin/com/slumberjer/mypasar/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.slumberjer.mypasar 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /mypasar/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /mypasar/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /mypasar/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mypasar/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mypasar/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /mypasar/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /mypasar/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /mypasar/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /mypasar/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /mypasar/assets/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/assets/images/login.jpg -------------------------------------------------------------------------------- /mypasar/assets/images/mainpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/assets/images/mainpage.jpg -------------------------------------------------------------------------------- /mypasar/assets/images/phonecam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/assets/images/phonecam.png -------------------------------------------------------------------------------- /mypasar/assets/images/phonecam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/assets/images/phonecam2.png -------------------------------------------------------------------------------- /mypasar/assets/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/assets/images/splash.jpg -------------------------------------------------------------------------------- /mypasar/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /mypasar/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /mypasar/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /mypasar/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /mypasar/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /mypasar/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /mypasar/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /mypasar/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /mypasar/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /mypasar/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/mypasar/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /mypasar/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. -------------------------------------------------------------------------------- /mypasar/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /projek_ayam_fb/.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: fba99f6cf9a14512e461e3122c8ddfaa25394e89 8 | channel: stable 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /projek_ayam_fb/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | 9 | # Remember to never publicly share your keystore. 10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 11 | key.properties 12 | -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/main/kotlin/com/slumberjer/projek_ayam/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.slumberjer.projek_ayam 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/main/res/mipmap-hdpi/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/android/app/src/main/res/mipmap-hdpi/log.png -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /projek_ayam_fb/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /projek_ayam_fb/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /projek_ayam_fb/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /projek_ayam_fb/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /projek_ayam_fb/assets/images/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/assets/images/camera.png -------------------------------------------------------------------------------- /projek_ayam_fb/assets/images/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/assets/images/log.png -------------------------------------------------------------------------------- /projek_ayam_fb/assets/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/assets/images/login.png -------------------------------------------------------------------------------- /projek_ayam_fb/assets/images/phonecam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/assets/images/phonecam.png -------------------------------------------------------------------------------- /projek_ayam_fb/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/assets/images/splash.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/projek_ayam_fb/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /projek_ayam_fb/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. -------------------------------------------------------------------------------- /projek_ayam_fb/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /simple_calculator/.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: fabeb2a16f1d008ab8230f450c49141d35669798 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /simple_calculator/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /simple_calculator/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simple_calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /simple_calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /simple_calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /simple_calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /simple_calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /simple_calculator/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simple_calculator/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /simple_calculator/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /simple_calculator/assets/images/mycalculator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/assets/images/mycalculator.jpg -------------------------------------------------------------------------------- /simple_calculator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /simple_calculator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /simple_calculator/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simple_calculator/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/simple_calculator/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /simple_calculator/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. -------------------------------------------------------------------------------- /simple_calculator/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /vtrack_user/.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: d3ed9ec945f8869f0e136c357d0c2a6be2b60c98 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /vtrack_user/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /vtrack_user/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vtrack_user/android/app/src/main/kotlin/com/slumberjer/vtrack_user/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.slumberjer.vtrack_user 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /vtrack_user/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /vtrack_user/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /vtrack_user/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /vtrack_user/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /vtrack_user/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /vtrack_user/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vtrack_user/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /vtrack_user/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /vtrack_user/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /vtrack_user/assets/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/assets/images/login.jpg -------------------------------------------------------------------------------- /vtrack_user/assets/images/mainpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/assets/images/mainpage.jpg -------------------------------------------------------------------------------- /vtrack_user/assets/images/phonecam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/assets/images/phonecam.png -------------------------------------------------------------------------------- /vtrack_user/assets/images/phonecam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/assets/images/phonecam2.png -------------------------------------------------------------------------------- /vtrack_user/assets/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/assets/images/splash.jpg -------------------------------------------------------------------------------- /vtrack_user/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /vtrack_user/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/vtrack_user/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /vtrack_user/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. -------------------------------------------------------------------------------- /vtrack_user/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /wfh_attendance/.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: 2294d75bfa8d067ba90230c0fc2268f3636d7584 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /wfh_attendance/android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/main/kotlin/com/example/wfh_attendance/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.example.wfh_attendance 2 | 3 | import io.flutter.embedding.android.FlutterActivity 4 | 5 | class MainActivity: FlutterActivity() { 6 | } 7 | -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/main/res/mipmap-hdpi/wfh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/android/app/src/main/res/mipmap-hdpi/wfh.png -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wfh_attendance/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wfh_attendance/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | android.useAndroidX=true 4 | android.enableJetifier=true 5 | -------------------------------------------------------------------------------- /wfh_attendance/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-5.6.2-all.zip 7 | -------------------------------------------------------------------------------- /wfh_attendance/android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /wfh_attendance/assets/images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/assets/images/login.jpg -------------------------------------------------------------------------------- /wfh_attendance/assets/images/mainpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/assets/images/mainpage.jpg -------------------------------------------------------------------------------- /wfh_attendance/assets/images/registration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/assets/images/registration.jpg -------------------------------------------------------------------------------- /wfh_attendance/assets/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/assets/images/splash.jpg -------------------------------------------------------------------------------- /wfh_attendance/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadhanis/FlutterA192/4ce8c3cbcf14c0e7a0f59d0e44210c0679629e9c/wfh_attendance/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /wfh_attendance/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. -------------------------------------------------------------------------------- /wfh_attendance/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /wfh_attendance/lib/user.dart: -------------------------------------------------------------------------------- 1 | class User { 2 | String name,id, password; 3 | 4 | User( 5 | {this.name, 6 | this.id, 7 | this.password, 8 | }); 9 | } 10 | --------------------------------------------------------------------------------