From a8e802ffab3e9955991daa7a5d586303434d9f96 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Wed, 31 Aug 2022 22:19:20 -0400 Subject: [PATCH] Initial commit --- .gitignore | 50 ++ .metadata | 36 + README.md | 16 + analysis_options.yaml | 29 + android/.gitignore | 13 + android/app/build.gradle | 71 ++ android/app/src/debug/AndroidManifest.xml | 8 + android/app/src/main/AndroidManifest.xml | 37 + .../app/src/main/ic_launcher-playstore.png | Bin 0 -> 15201 bytes .../edu/furman/now/furman_now/MainActivity.kt | 6 + .../res/drawable-v21/launch_background.xml | 12 + .../res/drawable/ic_launcher_foreground.xml | 53 ++ .../main/res/drawable/launch_background.xml | 12 + .../res/mipmap-anydpi-v26/ic_launcher.xml | 5 + .../mipmap-anydpi-v26/ic_launcher_round.xml | 5 + .../res/mipmap-hdpi/ic_launcher_round.png | Bin 0 -> 4012 bytes .../res/mipmap-mdpi/ic_launcher_round.png | Bin 0 -> 2500 bytes .../res/mipmap-xhdpi/ic_launcher_round.png | Bin 0 -> 5538 bytes .../res/mipmap-xxhdpi/ic_launcher_round.png | Bin 0 -> 8514 bytes .../res/mipmap-xxxhdpi/ic_launcher_round.png | Bin 0 -> 12212 bytes .../app/src/main/res/values-night/styles.xml | 18 + .../res/values/ic_launcher_background.xml | 4 + android/app/src/main/res/values/styles.xml | 18 + android/app/src/profile/AndroidManifest.xml | 8 + android/build.gradle | 31 + android/gradle.properties | 3 + .../gradle/wrapper/gradle-wrapper.properties | 6 + android/settings.gradle | 11 + assets/images/bell-tower.svg | 1 + assets/images/compass.svg | 1 + ios/.gitignore | 34 + ios/Flutter/AppFrameworkInfo.plist | 26 + ios/Flutter/Debug.xcconfig | 2 + ios/Flutter/Release.xcconfig | 2 + ios/Podfile | 41 ++ ios/Podfile.lock | 22 + ios/Runner.xcodeproj/project.pbxproj | 549 ++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 87 +++ .../contents.xcworkspacedata | 10 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + ios/Runner/AppDelegate.swift | 13 + .../AppIcon.appiconset/Contents.json | 122 ++++ .../Icon-App-1024x1024@1x.png | Bin 0 -> 10932 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 0 -> 564 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 0 -> 1588 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 0 -> 1025 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 0 -> 1716 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 0 -> 1920 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 0 -> 1895 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 0 -> 3831 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 0 -> 1888 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 0 -> 3294 bytes .../Icon-App-83.5x83.5@2x.png | Bin 0 -> 3612 bytes .../LaunchImage.imageset/Contents.json | 23 + .../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/README.md | 5 + ios/Runner/Base.lproj/LaunchScreen.storyboard | 37 + ios/Runner/Base.lproj/Main.storyboard | 26 + ios/Runner/Info.plist | 49 ++ ios/Runner/Runner-Bridging-Header.h | 1 + lib/main.dart | 6 + lib/src/app.dart | 147 ++++ lib/src/layouts/main/index.dart | 49 ++ lib/src/routes/index.dart | 15 + lib/src/screens/events/index.dart | 113 +++ lib/src/screens/home/index.dart | 96 +++ lib/src/screens/info/index.dart | 89 +++ lib/src/screens/map/index.dart | 187 +++++ lib/src/screens/student_id/index.dart | 72 ++ lib/src/services/events/event.dart | 13 + lib/src/services/events/events_service.dart | 174 +++++ .../get_app/barcode/barcode_service.dart | 90 +++ .../get_app/barcode/barcode_test.dart | 12 + lib/src/services/get_app/barcode/results.txt | 66 ++ .../services/get_app/user/user_service.dart | 3 + .../restaurants/restaurant_service.dart | 227 ++++++ .../services/restaurants/restaurant_test.dart | 29 + lib/src/services/transportation/bus_503.dart | 3 + .../transportation/saferide_shuttle.dart | 3 + .../transportation_service.dart | 3 + lib/src/utils/date_range.dart | 19 + lib/src/utils/greeting.dart | 12 + lib/src/utils/theme.dart | 23 + lib/src/widgets/header.dart | 54 ++ lib/src/widgets/home/events/event_card.dart | 97 +++ lib/src/widgets/home/events/events_list.dart | 95 +++ .../home/restaurants/restaurant_card.dart | 110 +++ .../home/restaurants/restaurants_list.dart | 63 ++ .../transportation/transportation_card.dart | 78 ++ lib/src/widgets/info/info_card.dart | 46 ++ lib/src/widgets/map/filter_chip.dart | 55 ++ lib/src/widgets/map/rotate_compass.dart | 37 + lib/src/widgets/scroll_view_height.dart | 22 + pubspec.lock | 672 ++++++++++++++++++ pubspec.yaml | 103 +++ test/service_tests/get_app/barcode_test.dart | 7 + test/widget_test.dart | 30 + web/favicon.png | Bin 0 -> 917 bytes web/icons/Icon-192.png | Bin 0 -> 5292 bytes web/icons/Icon-512.png | Bin 0 -> 8252 bytes web/icons/Icon-maskable-192.png | Bin 0 -> 5594 bytes web/icons/Icon-maskable-512.png | Bin 0 -> 20998 bytes web/index.html | 58 ++ web/manifest.json | 35 + 114 files changed, 4555 insertions(+) create mode 100644 .gitignore create mode 100644 .metadata create mode 100644 README.md create mode 100644 analysis_options.yaml create mode 100644 android/.gitignore create mode 100644 android/app/build.gradle create mode 100644 android/app/src/debug/AndroidManifest.xml create mode 100644 android/app/src/main/AndroidManifest.xml create mode 100644 android/app/src/main/ic_launcher-playstore.png create mode 100644 android/app/src/main/kotlin/edu/furman/now/furman_now/MainActivity.kt create mode 100644 android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 android/app/src/main/res/drawable/ic_launcher_foreground.xml create mode 100644 android/app/src/main/res/drawable/launch_background.xml create mode 100644 android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png create mode 100644 android/app/src/main/res/values-night/styles.xml create mode 100644 android/app/src/main/res/values/ic_launcher_background.xml create mode 100644 android/app/src/main/res/values/styles.xml create mode 100644 android/app/src/profile/AndroidManifest.xml create mode 100644 android/build.gradle create mode 100644 android/gradle.properties create mode 100644 android/gradle/wrapper/gradle-wrapper.properties create mode 100644 android/settings.gradle create mode 100644 assets/images/bell-tower.svg create mode 100644 assets/images/compass.svg create mode 100644 ios/.gitignore create mode 100644 ios/Flutter/AppFrameworkInfo.plist create mode 100644 ios/Flutter/Debug.xcconfig create mode 100644 ios/Flutter/Release.xcconfig create mode 100644 ios/Podfile create mode 100644 ios/Podfile.lock create mode 100644 ios/Runner.xcodeproj/project.pbxproj create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ios/Runner/AppDelegate.swift create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 ios/Runner/Base.lproj/Main.storyboard create mode 100644 ios/Runner/Info.plist create mode 100644 ios/Runner/Runner-Bridging-Header.h create mode 100644 lib/main.dart create mode 100644 lib/src/app.dart create mode 100644 lib/src/layouts/main/index.dart create mode 100644 lib/src/routes/index.dart create mode 100644 lib/src/screens/events/index.dart create mode 100644 lib/src/screens/home/index.dart create mode 100644 lib/src/screens/info/index.dart create mode 100644 lib/src/screens/map/index.dart create mode 100644 lib/src/screens/student_id/index.dart create mode 100644 lib/src/services/events/event.dart create mode 100644 lib/src/services/events/events_service.dart create mode 100644 lib/src/services/get_app/barcode/barcode_service.dart create mode 100644 lib/src/services/get_app/barcode/barcode_test.dart create mode 100644 lib/src/services/get_app/barcode/results.txt create mode 100644 lib/src/services/get_app/user/user_service.dart create mode 100644 lib/src/services/restaurants/restaurant_service.dart create mode 100644 lib/src/services/restaurants/restaurant_test.dart create mode 100644 lib/src/services/transportation/bus_503.dart create mode 100644 lib/src/services/transportation/saferide_shuttle.dart create mode 100644 lib/src/services/transportation/transportation_service.dart create mode 100644 lib/src/utils/date_range.dart create mode 100644 lib/src/utils/greeting.dart create mode 100644 lib/src/utils/theme.dart create mode 100644 lib/src/widgets/header.dart create mode 100644 lib/src/widgets/home/events/event_card.dart create mode 100644 lib/src/widgets/home/events/events_list.dart create mode 100644 lib/src/widgets/home/restaurants/restaurant_card.dart create mode 100644 lib/src/widgets/home/restaurants/restaurants_list.dart create mode 100644 lib/src/widgets/home/transportation/transportation_card.dart create mode 100644 lib/src/widgets/info/info_card.dart create mode 100644 lib/src/widgets/map/filter_chip.dart create mode 100644 lib/src/widgets/map/rotate_compass.dart create mode 100644 lib/src/widgets/scroll_view_height.dart create mode 100644 pubspec.lock create mode 100644 pubspec.yaml create mode 100644 test/service_tests/get_app/barcode_test.dart create mode 100644 test/widget_test.dart create mode 100644 web/favicon.png create mode 100644 web/icons/Icon-192.png create mode 100644 web/icons/Icon-512.png create mode 100644 web/icons/Icon-maskable-192.png create mode 100644 web/icons/Icon-maskable-512.png create mode 100644 web/index.html create mode 100644 web/manifest.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..64bbc21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,50 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ + +# Web related +lib/generated_plugin_registrant.dart + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release + +# Custom +/lib/secrets.dart diff --git a/.metadata b/.metadata new file mode 100644 index 0000000..4c7eb5a --- /dev/null +++ b/.metadata @@ -0,0 +1,36 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled. + +version: + revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + channel: stable + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + - platform: android + create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + - platform: ios + create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + - platform: web + create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/README.md b/README.md new file mode 100644 index 0000000..5014aef --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# furman_now + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) + +For help getting started with Flutter development, view the +[online documentation](https://docs.flutter.dev/), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..61b6c4d --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,29 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..711ac01 --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,71 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion flutter.compileSdkVersion + ndkVersion flutter.ndkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "edu.furman.now" + // You can update the following values to match your application needs. + // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. + minSdkVersion flutter.minSdkVersion + targetSdkVersion flutter.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" +} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..2498120 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,8 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..9da0164 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/ic_launcher-playstore.png b/android/app/src/main/ic_launcher-playstore.png new file mode 100644 index 0000000000000000000000000000000000000000..d6f2b3863fc0ca09d8f87514ff191869e5bb7dde GIT binary patch literal 15201 zcmeHuc|6qL+xN#(RJOi~?4(i&W#1`fkG?3$Rv~1~62@4fXtT#8A|Yihk_KZ)WjB_P zU6wIp8_QT`n3?-b`EK`fKlgM0ao^ALdS0*JKYZr%`kZsFbDis)>$=|8`#iW{qQ}0Q ze>Vg{><0R0%^-*oJTgM8JHbC<;5RY^sU0;qd)gwN{ z`{OS@+-+Dcx|@gfPKPywN3pW%>pdin1n=QeWoEp?r7s2#T|s7itimWPA4)|AVUYxk zN{O#>JTi$bHF#9cw}sY22^-x5LH7|fIT{#yBMuBK8pR6!Ucdj}{CGXTjvK{@9c8-D z!U)~Zg8A1VK6r8L!ezFFv5aZ`d=_WAMEz}$v(uhLE0FB zI7)PD9b{PK2Hl*Elzg+TFUSZWgnoUV78(|`9@?-_UUC?JHFs<+m?0TFuqho9+ zJ6-lWK=!eEG<%{(n#t3_&40AN6F16#oEI~h`p@@^HYn9mqv^1?C*#3~e|1hShY9$q zKwDt_GTb&Cqu{h3`+TkK@wmPjkJc$@aSsC&Slqu7;%I@%Y@3JYX4@B3oI)_w$}mG? z$V)Qoh@gq%X!@-F*3Tx+E7GYx(}uZGka7hTgA{~9#UKb1vb=UuX-g|vY}fuyG8VZl$`uXu*-74`l5=Uu3cxcPFro?+Ip%+S_3 zdKdZq%E-{%+M#0WxRFbUYtp>oB0vc`FtJQtNH~NChmHC-au0*7TyP9hqhuK;>t}^sX2{WEgcdtCWmc2KhOteR zUp8-^MP#+eA~;1Ud!g`Xe)UeHE2trR&7k1RF@I|Ug&zO|LHETNq5t^tek#l#X84G= zjLH&CW?0ezr^X8b$_>nVvI*fvi)C9w%f}icC-+Pmjp(}1MixeU~U zQ3yP!Gk}(}(OtiCNN+tOY4hA+EMHh8u&Qcf{l9bKYWfxnn>xVyp- zoC0@Kw)IrAd9`%kB=57qmE)KqfqQkOty4_;VL+}_tc>H1XwqRfKdVaPl~5>03FzB+ zvm&}BKl66#;L=S@loLyY4pZAEL;MIBMGjUfGVCJZ#^K(QP#p91?gEQ8OdKc#p78xL zVf2}UXG4JoQlgkSn)}&0lPC&I%vlwUkV?BGC|@zrlVK|m+v3cw8~sPK_nVs+tWGBZ2Uf2JA(Qqvd14cj zHn@BolRG4^>@jO#BgVDJ1vb>{FGg0fH3YL`$D|d2KAu^L_ZiMwvizwJ;ub|{v@OM+ zcV4an-&+>i6pA+sc=9c*+R}vtbpZz&nBSSiSEt7ykg}juF&~%iQ4q(B*xT#$v}MN_ z@WP9i>p$<@DkEn*wLkUuQCW{dKId$E9&yl0B_PkQJBDVC(rIBD;{+e3*W4S$mfz{h zt7o%1>6#=soF>VOv7?1#hfxeqF9x*S@Iailoz~wB<3Q{*U2GOv6rwv0N&~DZI!xfi z==*0!Q|I$q8VNi*$^NN_N8e{05}`S~mLFRQ6;=E%L>sj_Qg*G0gaPA}(C5xQ`j`*q zQxr6DkCccu87vzozMpoxQ0)k!-L52oGUzk;NY~*^3rjrp=l&I@4JBF9W)GozfXvIe z!7aP8wyg%(Y;86;8>4{)ac3Y%7}%%!ZlE;~`Yav=>+`?;AZNruBX_AAHMPl^*GNit z!>&~~`_7M_$M<+%dD}{U;FPw`A{qjM2L1xe>0sBzz>=#>!$hQJ*N^8vWb>ynr5=6TLuq&0yq}}*Cf2qewRG2b4sBEUP3SOt25vt&l;Pte z2omfAp+a3U=~DafF+}@FJc|=&tH-S(OeD(`J%A|8KwIyGQ?uVwXKOn!47E}~Uk5@C z4;SH;Q%}Lm1&40wE({${Ed8vDR)3cevay(jocF&$4DKfUj_w0dkWXNrRjPtd5q$W1 zggh)i05{Eip$aS*gGi0$<){!!QlaffOXZtug}-!;h_3 z?i>0jP_5cq(K?}6DN>L6jIoOk1CmvVfoO)6Lt&0+r>MrwxK|7c-`7z;PUJ$huE|a2 z?Gl*mXqWR@9dElDX$dd+jK?fz3x}L|NJ!op*H&&+5fQ>deEYS~q%1;6bahe}JF({l z76erW&(zb7*$TuYELpWU)^|~Sup9fEjNCi?qCb{)ZJ?S<7MRucj?_p5A@)qVkDnU) zxOLV0^$*1PuZG>un|Fl+pdR1^dUBlW-PYH|>aKb1k?=~PSo=&@%&|A>S#g6gZ6ZlS_m&W`b&-6;z zO^IlEYi_WqDOQdLELRZZfo6Rxs0PJ@s;ABMuotg`_1_VNI{-bwhExjbDrp1jJ=Ovt$-WSQv z&62uEqvDa>`_gEc5H%8l*gUAJ7hs|C7hiFZ&h<)-h|E2?{lnO9v3cdR6%r|QU64=1 zIby-<)>5m#O6jJ%_xmsJvkG!7tKM{B721tipRz)qGcs})R(57PosHX3SFk077EVfv zmfl&i9QkN=@t~Gep8Qf+9xWP{kRvo3+cfTK9l^afq|^JcJnWeqHzPB29iOeV)9A(~ zzE1LU`JVMgs)ve?riAIj2vTNBIOD#=Lbk-g`8zJC(|SzYl2-bjcC?;Y!wI zzx2K7$2|KB=S!U@43L3qmHS3z6#8b_%!`1dN;Y!#VkU@6rJ-y=nj#jW*2Y$BU7NZq zp`8`VVMpn=vXpQpE)Y!PuMLMK_GgE(bF6k@mc2%+TMFPurn1ov6<$0|O_98glrE;_ z37oxC;5wJ^dTEv1$&)kcgS!QNfukGDnd`#&cu-CD|h&R z!t4+=WQGp*Exvg?b{uA}ARs}hYUMC#EWOsxpc1fr^KJe9`VD2+r6%9J;vIT<#v(OW z$YHA1H8(XimuwF3t4p*_?~1?444D;Y2){%Ge(5Hm5|(Y#nq;dRBF6T2W<7U~@U2++ zpvhg)IZFC8xc(dFPFblV`NNpX(lAR>IKo?0%@@b8LO506glHZYDR(3g0Hlxq~;WYx=Qf08u3ebGY63zJ(|hzYn&N zRO5qRY`;Ht_m~cvdhEL-`Fo9TdQjZ8d}VTa=X875XJ7qHBXWAzbc$vJ@wXoA3g>GM zMyThd^GJ8n3phw4>aM|HO&3vb+dnAi9VRSG*-gnAC+cPzf#c0FcpRw^^8I*|i;~oL z*GrkfWWjIKFG*X>?p)B@SJ9{NBQ5hI{Kstt;*zfoPq#c2324M;BXaM`5l$H&%2wl^ z@%8+Y{=CljLgpiK`nTyL(fluuvqBbz_Ez!+)t_7_GvQ;OR5b=o*ke6+ zN4=TqoPMFnyL$F4d1x*@SgPZD=RiCOUAw7MTU)^fu~^Ym0)t)1{huK>^SaMo}!$I~ydY946NJk`FUP z&L<-sdYcl4k!BW`-HYuHL>XjvPQTSetf~}Y=0~rKN(Q$3z7}H*KX8*CI_&6}qlXUm z;t^#8k1L@kmEEjJOzqVTCpBX=D^^u%T))(fsgz(sY*}!X+I_pQFh;64bX_}6tk>-+ zJ!W{O*{AgV(Z+OB+7$6!i`k{GgJd@DhR*4lVkSS^7qiT^N;uUsef!e`M1@%)4BkY$ zk}1>9z-zkFK`;q(vQ?xVRrRHg{zYZ`RhBcfy--G{kJpkJdQ5N=_OxSaNC3N%e(eA@ zA$yj?HkvrAZhfWtdtAT{^|MgmizT_#x_7m5Q6(u%gFX>0*qOm#a;ix5%qceW=bir1 z#X5erFK74JR^U{1`xGkMPxa~OYcXr{cU54CfysPXCx<-(Kk<@%kF-vCF(mw@$+jLS1J;G89p8uZ^$FgkwQnoD>ugp#vxG zva)Ljt9$LGfbBG{Qm^lHrF55nVsV=NHCgRt%OHOHWxN9tccbc=@^{ z9fOG2sxpI@Jh3FP)#rS{RT}nLRW5Y-KP_(Yd)^D8XxG)|@D3Pfc{KF;9DC-Rl)WOK zBsW=Vk4bx0!{kgdard5uTLZRH*QyWLBJiqGgs!5ogSr9;kta(J{4*AeU(ag$qVD6k zpuOEfH+F`c(&ITld@%ZUdculIP-578>=4@WAZJiA=H%ms>{(^oK0Mzp|KWg>?>M%C zns4xJkOW;fzm9c~e|vKd$}xLR$ZaZ1?aJ;so2u@8&)uZDSqtDXHktuCAcDId7ZP>t zx<)0(H~*|+ZvWxed51FPuio#Jg&MK;90p4ivz0@(Z1sW4Ad)O~UTNxpK_GVy zhps+7z|Ii9n;Bw-q8@Z|L9ey{r(Ze_kB69naB_h+8Co0ysaJo^nv07@_=XrH`keM$ zO5=*j6EAC1#xbOD(Gf!gEc?tX108t;z~^3|n9m?f{Er{q=!qfyT)Z3Fax-UI&pa2T zEII%Z$RJ2YR<^Sb@6>mWtZGY63B&V}LoCTQxSrcLaf%mnG3P^KpS7?Y*MVvWUdUh@ zJ5keDKb#RN;Thtt8dJPvz#uTLjkHJoE@Q%q;6OHBd% z>Iq_K=>g}FoMvAT$?=Uigu0NlomipE;?RLtFd)x4(BEE&%^W2LjU8l!dci8a8R3Gw z_cB0k%uv0B7c2DfJ`}FN7=A5Zi5apv3)S*7)Sm1SV1%R(LRVwJ`p&R3K)idQx4O_t zSL+i((A}aWA=x*edAVQB zadk_h^ctR_{{#8{T)&?g$Gp0@1gCAh8?V<-?CA2>r3PmU z?|qL#evu(6?@kS5ey=UG`lxp!?uvlTts=`R*Jb}lyOv#1zt^ep6xs2K#$+x?u?rIp zx7jx)a?%tpt5V(W`gy2ds_~FBC{@KIE?F5lH9al@IcdU}P^{XHbJ*c8w>@oTo&Z#W zMSz%@=bmy3#cPxqD>s#PDT$t3=hUl-Pe%6b++q2!Ff;IRntIZ)B6}gx%q@qf@JnIu z>1P9x>R9O*R&@azV=FU@m@~cGXVp~YXC(YY<0PT@(zfOw=|DJLS~F>DtS7H#TrdrJ zwo*Ze*B#zUD9@kK>NOuY9C14G>d42{(vbPitMwNw0_}x0;Vz+)Bkcej1p7v5Bdj-u zS~#bWxU}^CtTOva9;UuS)JPqrMp0x^!^c8rr6z zqm|YtBslF@N3IBu2Dpy*Y(5=Jenp}jHc#u@*&J@_+(J(Tj6|nxO{%XKeTlKi&pWYn z(j*|g< zBIAr(GqrY~=RVa@vNCs7BnJ4xgE3OS47#lX`gm*g_9BlT$V|F$Z$`2Rxr%-;C2MTl zsAyiCUCQ`oF18~5QnrZOzWqEc2^vV*!+VuPsx^-iS9*7bI6LDkwVG6is3B zn^vRfJG6a5Eni$&%F2BAp{JnRToWGR?QL;q0hc5mwDHK>5~3JQ-Rr)#7cIH(pMXHZv=;ebmr7a zV85^82KDd`uaAFC_4o)wM+|K~?cC2OIWS~Jv%4c#tT>@auHBvX3EtE&vK0+!#&%(*41Z(m>tN?EW%V>>Ktdd|%B)+u>tK zd;auyrlvyaVC|o9Ns=bte`_bgdh#J^QH`gM`CVol;x`J zY!_a2b8L7^>&Fr5?|bpwtP&>=Hveww^Wm{Lk@)u+zKj%Z;)S%UD;8t z0-HkN>n(#!u{(w2cyBBrrYU^ta5i8imX}g^=1C{RgVD}bs|6jb9>%V zdsdy2-ubM3-oGODx@%iD(27i9r}||0=B=Mk#>~W}oR{QC<uu5EPT89-jvq1;0#`+- zq438n1R)XhPwv<>tu(eCy}FerIV zUmJXu-J_}kLIk?UuC)lm zrjs6xGCmZ;JERVEpFh{{g{lYxE-OqRML7Ny=8N;RR#K?0#`0!n0fn!;O%MP>y$QK~ zVUMzdF{zww;@j$ZbP&p4*{e-0ACz_YJkwD+js-ts|AF%?7TKvPCVesD4t4uBVG zjMpLDSI@56{aI6=lkMv5I3F0Vop@GxZlFfxkYCuXZ@4BltBSy|xAu4Ex2;-wXLu-& z8nGbrOv{4;i~yC(hEuFx&S|mvstD5xb^PWMvB(Gg`ZN6LaiML$@C8z?p~1a*)O}TM z_566gw-i<eg>L5~#nIh37<%%(8NFUA7e~wW->%NGrK&F4ZN$I;o$7CynZL zvd@#u`&y&lbp53*4Z(uoM*x5Sd=aE+j?1z6A@XSG@xGHlJfX3sXR12-6~ff_-N2dR=(eM5^|s%T@P&_AMz68N-I}We5ATMd$w^2`jX|7wQy+#+ZIak^lPfFNM&viGSI_zjW|_ z&kjI5+*`sHpPA>G0E!M)scJV+eu2(s!2#T}*u;h>bw25su;3oNB$D8HzTw`2WV>dO zk|Eag`vF+t@v=bjCD%=Ce233IhVX$iP%Vf=UkJQyC&WAf<>d08b;PE!5W2&l69ifi zo6*8~&u{~QkKYHLlJv8`)jLP3>B0}sbvRs1ZKnzIRjWBj>+OYJgDPI(IZ!Vg0^kSz z89Xj;zy3cyf_C7PX5*OMETrOcX3YW|an!EgS9tS3u)y-mY17`WTYfiio5o6&h)_gj z_8GKN(~GzSPh8uk1%T86GsX>M9?=0&EuRe100H}Z~AMZf=?2OPYfJN{#jO}C;RREa>+YHPLQrmxdNQI_n-S({XO?|a5xpn}hedfE8zLT99ozrtgx}-y9F|obml;qj`Z3SOC3_ z3Q}Et5Le~sUZLjNyY%m$(Hb!VV7TQo^wVUx%+}KG1Ft(k+T4Z1PXe-*F0O`}rU?ox z1{d+Z=9$^p(mTyu|0&3Zr&5{uh+hQxx;%s-4Ev0#CBRgUy%*Nr;)3Ga(1MBd1U%^6 zfv6>KL!)L#3^pli6&jC*Ab?7p;%9{RvqD@D8+W!CbOF%M{vW*52Vq#wsy&OL0Q3%& zdqcOy`%fsKmp3Ox>JJsHoS@@#G4$g7w}Ni4j=6e=Kv`1UPeAlJJrX{jG0*)IR@^9U z`rhG@pHIsx%dJuxa zD@WLpdVOa)&i!Ntj0WUl?j4ru!Ag5bPA^hfM))?pu+zG5_v_Q;p9W; z>KSu8>IFdg$icOTAkDo^AMSpX`##55_y|=~=nquv5HwTC2URkFin2`KZ<75hDt(j0 z&K4iQl>+tcLc#AT;#Eo+@gUc10qD(7nt}VMii-cn%SnLOAbh;&w8@|gYqd5f99oA5 z*QWr&b~Q2x5H9-B3KD@f6m(Lfzr>#lRi z05y(D`>Le-_so1d%eT{nD?^Oh_Sdk}!wGT?C55L7M>(4grASnG?lZJ5)~|Pl$2ENVO(SN*rx{be4yZlrD~lNWR@fF$;PsOmLKNB0Bd#l}|Qo2hj8HTS?cR z!`JH^U7vlA?9yWGxvFE?;TiPSdfz&^`&pPnCDRqon{a zYbQBuZ2}T!%F^m!QZAh($@yUa8mRtH%{?eEyX-9!cy4YMH@!;cLD!rw@fw}|itJ26 z>BJcwmk$#&itU6!Jxe-qBfoWIPT7q+cU4TRN>S` z44u`6=drj!%KE}Dc=GkE%^S-+XWVq52U(+hb2EO7l_{pqVtdX!22jq15EOC_wq%?E zABI;a3FOjV=^b#t5_(~`*QikeYe#J}`nH;~BcZ;JX?|H$uHlCv=4EraHf6egR zZ_qI~i?-<@U+)H2*Ok6IS)2YB%ceJ*KQ*OAU<$f_;SH@ax`MN>7bcYu8_2 zm$+NA?$>=$d~Cce=PS>)IU7KSNJ7x?UXQ7v=XAIb)GK$7?DFw(K3%TdLyIgXmVNb{xjg6L|x{Jh{ zPQnlA3^Ywr!`qH^EO$)N9sAZdOQF2m_}U?c3-tkzp^*slbdV{6yW`tuI{6mq(APo< z?zF$Mu|Zt{JEC=LcQimB1yDnafG666bHDSC=EURyP|ZXQh!x3_no&;uXc7UtSR>$E{hu#~Ht{S^Pj+<*&5Q%;AShu$@ z!Oda6)qdH5^GV%3Tf>Kb6~JsbAq@;oPgreYvIE90=5aIs|Sj0*bLa%*|;csT)tfkznrKF3!Hje5@xtHN(v5~%7zcZ64RBv z>)9$c#=Ki>^G~L*TrBY@tHuwDi+?!zBT)X@-da$1kacdY?C=@Sw@37w1#V`L zPWA+*98tV5KSG{hzdVGqVo*AvA<9|MVf7bQH+81w@obg+`}B`9q|SXRVX7E9Sl1n0 zlnBbXAk+DH<&?8ta_mQdaMA0eFL#CKgMFBHLui8(2f();%eJpO`btdK9K*^)H}2O} zqdz`V^9)IjW!`Q8Htz8Z7H!NO8sH4+fFx4-L4&EOWm@a8unW=@Rm|>T%k=Yn)uo2c z%-cGkw+LnSzB-5>yI4X;1ZivDB&P)vfI4>W8fU&NnqAfR*|&Q#hE0~5bVnSoL@ zW-RFg4557OWd}_;fmG~xMN=PBn^PkBhJS&(YwqfNLv)O`Jn&7XG2iJT6q19Y~PLrUZ|s6M;VZ}9+! zctkRENDM>)@_kypWuEVLYU{d?9zw7A7)AM|chr^}DLDcE)FrW`Q6B2A{i}>`VNfq2 zHA?2-$!_6!%)sUHL#%8*51hU5Jotu=jbJ$%|m>BoMp z#K(}fA3}0syL=!J4zz?!ux@hfG-jGK}z(nuTw9(VuRFRf#Ge)D5d>n}W(gp`eU-S7P)-#-Ww3Uh#l} zxdU;qCV0B$34%6V&4}Jn`?|wp;`m{P3);}rR;Z(XePQ3eCcxJ(b*sMx$mcQe9(Tb! z{Jm~KP2E9pxw?p0iKsA(n^%*tlo@*R^3(PHa_UF;6$JG9MR3Aw|A8cx0M>9Wb|~at z3E)mQqr{?bXC#2aFLT%^x#vz+2@9Z{h!)|*%q!)RGp_27+Sw`x`7S2hA^G3>q6T$# z1iT`aemA<|nN%oUmeXe6j}xbGLHgD(X>f7Pd1s!8B2B6|kVTaLeCBNZ;HG{spwuTk zsb;D*3IBOFMjUXVtiijzj8HhB04%aHK(!z)47>|LR{>#P9b92}3$8K=gWF->!BvJh z0A9F*t1Eiodcz06tpE4T@7tXT(ys{e5tA@223heAQos}yW#*ekZA4mHoKPy^ZBAYx z`8b*u13t$YT+OdbHTUhL-hFvw^%G(24({*DT{ucAq`Hu*e{f!0cBTAIr*7wVSM@J9 t4c6y0$)#p(GSY9{{14nG{U=C4)k+nHPC7^ghJmplgL5Wli_ct*_&0XcMMMAq literal 0 HcmV?d00001 diff --git a/android/app/src/main/kotlin/edu/furman/now/furman_now/MainActivity.kt b/android/app/src/main/kotlin/edu/furman/now/furman_now/MainActivity.kt new file mode 100644 index 0000000..7155078 --- /dev/null +++ b/android/app/src/main/kotlin/edu/furman/now/furman_now/MainActivity.kt @@ -0,0 +1,6 @@ +package edu.furman.now.furman_now + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/ic_launcher_foreground.xml b/android/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..62321ba --- /dev/null +++ b/android/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..7353dbd --- /dev/null +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..7353dbd --- /dev/null +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..0707a418ff3e1bc5dcf1351eda1c5f73c726836e GIT binary patch literal 4012 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 SCR1?$0000?q#ze&+A@oQPk-%)hXcD)W#61!W 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 literal 0 HcmV?d00001 diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000000000000000000000000000000000000..a0f04c38e1283d7a0083998936749ce1c68fb7d0 GIT binary patch literal 8514 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 + + + + + + diff --git a/android/app/src/main/res/values/ic_launcher_background.xml b/android/app/src/main/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..e027b66 --- /dev/null +++ b/android/app/src/main/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #53307F + \ No newline at end of file diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..cb1ef88 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..2498120 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,8 @@ + + + + diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..61a47e7 --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,31 @@ +buildscript { + ext.kotlin_version = '1.6.10' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:7.2.2' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..94adc3a --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..cc5527d --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..44e62bc --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,11 @@ +include ':app' + +def localPropertiesFile = new File(rootProject.projectDir, "local.properties") +def properties = new Properties() + +assert localPropertiesFile.exists() +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } + +def flutterSdkPath = properties.getProperty("flutter.sdk") +assert flutterSdkPath != null, "flutter.sdk not set in local.properties" +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/assets/images/bell-tower.svg b/assets/images/bell-tower.svg new file mode 100644 index 0000000..96eae69 --- /dev/null +++ b/assets/images/bell-tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/images/compass.svg b/assets/images/compass.svg new file mode 100644 index 0000000..65273e6 --- /dev/null +++ b/assets/images/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..8d4492f --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 9.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..ec97fc6 --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..c4855bf --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" diff --git a/ios/Podfile b/ios/Podfile new file mode 100644 index 0000000..1e8c3c9 --- /dev/null +++ b/ios/Podfile @@ -0,0 +1,41 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '9.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 0000000..8ee2123 --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,22 @@ +PODS: + - Flutter (1.0.0) + - path_provider_ios (0.0.1): + - Flutter + +DEPENDENCIES: + - Flutter (from `Flutter`) + - path_provider_ios (from `.symlinks/plugins/path_provider_ios/ios`) + +EXTERNAL SOURCES: + Flutter: + :path: Flutter + path_provider_ios: + :path: ".symlinks/plugins/path_provider_ios/ios" + +SPEC CHECKSUMS: + Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a + path_provider_ios: 14f3d2fd28c4fdb42f44e0f751d12861c43cee02 + +PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c + +COCOAPODS: 1.11.3 diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..4e81353 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,549 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 11E039BAA958A82F61CA8CF4 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 445C012451AF63F270E13685 /* Pods_Runner.framework */; }; + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 3249BE4DF8F2DD8FFDBEF7DC /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 445C012451AF63F270E13685 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E0924751F238036F68F3BE44 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + F1A21E9608592ADA54209C54 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 11E039BAA958A82F61CA8CF4 /* Pods_Runner.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 18B68695A78F6AE81A12B248 /* Pods */ = { + isa = PBXGroup; + children = ( + 3249BE4DF8F2DD8FFDBEF7DC /* Pods-Runner.debug.xcconfig */, + E0924751F238036F68F3BE44 /* Pods-Runner.release.xcconfig */, + F1A21E9608592ADA54209C54 /* Pods-Runner.profile.xcconfig */, + ); + name = Pods; + path = Pods; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 18B68695A78F6AE81A12B248 /* Pods */, + F2C3C45531977DF5F83A8199 /* Frameworks */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; + F2C3C45531977DF5F83A8199 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 445C012451AF63F270E13685 /* Pods_Runner.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 8CBD88BD92A95B890D828A7D /* [CP] Check Pods Manifest.lock */, + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + F18EE307CA050517163ABD82 /* [CP] Embed Pods Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1300; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 8CBD88BD92A95B890D828A7D /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; + F18EE307CA050517163ABD82 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = edu.furman.now.furmanNow; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = edu.furman.now.furmanNow; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = edu.furman.now.furmanNow; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..c87d15a --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..21a3cc1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..dc9ada4725e9b0ddb1deab583e5b5102493aa332 GIT binary patch literal 10932 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 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..f091b6b0bca859a3f474b03065bef75ba58a9e4c GIT binary patch literal 1588 zcmV-42Fv-0P)C1SqPt}wig>|5Crh^=oyX$BK<}M8eLU3e2hGT;=G|!_SP)7zNI6fqUMB=)y zRAZ>eDe#*r`yDAVgB_R*LB*MAc)8(b{g{9McCXW!lq7r(btRoB9!8B-#AI6JMb~YFBEvdsV)`mEQO^&#eRKx@b&x- z5lZm*!WfD8oCLzfHGz#u7sT0^VLMI1MqGxF^v+`4YYnVYgk*=kU?HsSz{v({E3lb9 z>+xILjBN)t6`=g~IBOelGQ(O990@BfXf(DRI5I$qN$0Gkz-FSc$3a+2fX$AedL4u{ z4V+5Ong(9LiGcIKW?_352sR;LtDPmPJXI{YtT=O8=76o9;*n%_m|xo!i>7$IrZ-{l z-x3`7M}qzHsPV@$v#>H-TpjDh2UE$9g6sysUREDy_R(a)>=eHw-WAyfIN z*qb!_hW>G)Tu8nSw9yn#3wFMiLcfc4pY0ek1}8(NqkBR@t4{~oC>ryc-h_ByH(Cg5 z>ao-}771+xE3um9lWAY1FeQFxowa1(!J(;Jg*wrg!=6FdRX+t_<%z&d&?|Bn){>zm zZQj(aA_HeBY&OC^jj*)N`8fa^ePOU72VpInJoI1?`ty#lvlNzs(&MZX+R%2xS~5Kh zX*|AU4QE#~SgPzOXe9>tRj>hjU@c1k5Y_mW*Jp3fI;)1&g3j|zDgC+}2Q_v%YfDax z!?umcN^n}KYQ|a$Lr+51Nf9dkkYFSjZZjkma$0KOj+;aQ&721~t7QUKx61J3(P4P1 zstI~7-wOACnWP4=8oGOwz%vNDqD8w&Q`qcNGGrbbf&0s9L0De{4{mRS?o0MU+nR_! zrvshUau0G^DeMhM_v{5BuLjb#Hh@r23lDAk8oF(C+P0rsBpv85EP>4CVMx#04MOfG z;P%vktHcXwTj~+IE(~px)3*MY77e}p#|c>TD?sMatC0Tu4iKKJ0(X8jxQY*gYtxsC z(zYC$g|@+I+kY;dg_dE>scBf&bP1Nc@Hz<3R)V`=AGkc;8CXqdi=B4l2k|g;2%#m& z*jfX^%b!A8#bI!j9-0Fi0bOXl(-c^AB9|nQaE`*)Hw+o&jS9@7&Gov#HbD~#d{twV zXd^Tr^mWLfFh$@Dr$e;PBEz4(-2q1FF0}c;~B5sA}+Q>TOoP+t>wf)V9Iy=5ruQa;z)y zI9C9*oUga6=hxw6QasLPnee@3^Rr*M{CdaL5=R41nLs(AHk_=Y+A9$2&H(B7!_pURs&8aNw7?`&Z&xY_Ye z)~D5Bog^td-^QbUtkTirdyK^mTHAOuptDflut!#^lnKqU md>ggs(5nOWAqO?umG&QVYK#ibz}*4>0000U6E9hRK9^#O7(mu>ETqrXGsduA8$)?`v2seloOCza43C{NQ$$gAOH**MCn0Q?+L7dl7qnbRdqZ8LSVp1ItDxhxD?t@5_yHg6A8yI zC*%Wgg22K|8E#!~cTNYR~@Y9KepMPrrB8cABapAFa=`H+UGhkXUZV1GnwR1*lPyZ;*K(i~2gp|@bzp8}og7e*#% zEnr|^CWdVV!-4*Y_7rFvlww2Ze+>j*!Z!pQ?2l->4q#nqRu9`ELo6RMS5=br47g_X zRw}P9a7RRYQ%2Vsd0Me{_(EggTnuN6j=-?uFS6j^u69elMypu?t>op*wBx<=Wx8?( ztpe^(fwM6jJX7M-l*k3kEpWOl_Vk3@(_w4oc}4YF4|Rt=2V^XU?#Yz`8(e?aZ@#li0n*=g^qOcVpd-Wbok=@b#Yw zqn8u9a)z>l(1kEaPYZ6hwubN6i<8QHgsu0oE) ziJ(p;Wxm>sf!K+cw>R-(^Y2_bahB+&KI9y^);#0qt}t-$C|Bo71lHi{_+lg#f%RFy z0um=e3$K3i6K{U_4K!EX?F&rExl^W|G8Z8;`5z-k}OGNZ0#WVb$WCpQu-_YsiqKP?BB# vzVHS-CTUF4Ozn5G+mq_~Qqto~ahA+K`|lyv3(-e}00000NkvXXu0mjfd`9t{ literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..d0ef06e7edb86cdfe0d15b4b0d98334a86163658 GIT binary patch literal 1716 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 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f9ed8f5cee1c98386d13b17e89f719e83555b2 GIT binary patch literal 1895 zcmV-t2blPYP)FQtfgmafE#=YDCq`qUBt#QpG%*H6QHY765~R=q zZ6iudfM}q!Pz#~9JgOi8QJ|DSu?1-*(kSi1K4#~5?#|rh?sS)(-JQqX*}ciXJ56_H zdw=^s_srbAdqxlvGyrgGet#6T7_|j;95sL%MtM;q86vOxKM$f#puR)Bjv9Zvz9-di zXOTSsZkM83)E9PYBXC<$6(|>lNLVBb&&6y{NByFCp%6+^ALR@NCTse_wqvNmSWI-m z!$%KlHFH2omF!>#%1l3LTZg(s7eof$7*xB)ZQ0h?ejh?Ta9fDv59+u#MokW+1t8Zb zgHv%K(u9G^Lv`lh#f3<6!JVTL3(dCpxHbnbA;kKqQyd1~^Xe0VIaYBSWm6nsr;dFj z4;G-RyL?cYgsN1{L4ZFFNa;8)Rv0fM0C(~Tkit94 zz#~A)59?QjD&pAPSEQ)p8gP|DS{ng)j=2ux)_EzzJ773GmQ_Cic%3JJhC0t2cx>|v zJcVusIB!%F90{+}8hG3QU4KNeKmK%T>mN57NnCZ^56=0?&3@!j>a>B43pi{!u z7JyDj7`6d)qVp^R=%j>UIY6f+3`+qzIc!Y_=+uN^3BYV|o+$vGo-j-Wm<10%A=(Yk^beI{t%ld@yhKjq0iNjqN4XMGgQtbKubPM$JWBz}YA65k%dm*awtC^+f;a-x4+ddbH^7iDWGg&N0n#MW{kA|=8iMUiFYvMoDY@sPC#t$55gn6ykUTPAr`a@!(;np824>2xJthS z*ZdmT`g5-`BuJs`0LVhz+D9NNa3<=6m;cQLaF?tCv8)zcRSh66*Z|vXhG@$I%U~2l z?`Q zykI#*+rQ=z6Jm=Bui-SfpDYLA=|vzGE(dYm=OC8XM&MDo7ux4UF1~0J1+i%aCUpRe zt3L_uNyQ*cE(38Uy03H%I*)*Bh=Lb^Xj3?I^Hnbeq72(EOK^Y93CNp*uAA{5Lc=ky zx=~RKa4{iTm{_>_vSCm?$Ej=i6@=m%@VvAITnigVg{&@!7CDgs908761meDK5azA} z4?=NOH|PdvabgJ&fW2{Mo$Q0CcD8Qc84%{JPYt5EiG{MdLIAeX%T=D7NIP4%Hw}p9 zg)==!2Lbp#j{u_}hMiao9=!VSyx0gHbeCS`;q&vzeq|fs`y&^X-lso(Ls@-706qmA z7u*T5PMo_w3{se1t2`zWeO^hOvTsohG_;>J0wVqVe+n)AbQCx)yh9;w+J6?NF5Lmo zecS@ieAKL8%bVd@+-KT{yI|S}O>pYckUFs;ry9Ow$CD@ztz5K-*D$^{i(_1llhSh^ zEkL$}tsQt5>QA^;QgjgIfBDmcOgi5YDyu?t6vSnbp=1+@6D& z5MJ}B8q;bRlVoxasyhcUF1+)o`&3r0colr}QJ3hcSdLu;9;td>kf@Tcn<@9sIx&=m z;AD;SCh95=&p;$r{Xz3iWCO^MX83AGJ(yH&eTXgv|0=34#-&WAmw{)U7OU9!Wz^!7 zZ%jZFi@JR;>Mhi7S>V7wQ176|FdW2m?&`qa(ScO^CFPR80HucLHOTy%5s*HR0^8)i h0WYBP*#0Ks^FNSabJA*5${_#%002ovPDHLkV1oKhTl@e3 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 GIT binary patch literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 GIT binary patch literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..75b2d164a5a98e212cca15ea7bf2ab5de5108680 GIT binary patch literal 3831 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 literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..c4df70d39da7941ef3f6dcb7f06a192d8dcb308d GIT binary patch literal 1888 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 iW8Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..c119125 --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,49 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Furman Now + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + furman_now + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + CADisableMinimumFrameDurationOnPhone + + + diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..4cebb67 --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,6 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/app.dart'; + +void main() { + runApp(const App()); +} diff --git a/lib/src/app.dart b/lib/src/app.dart new file mode 100644 index 0000000..6e16d1d --- /dev/null +++ b/lib/src/app.dart @@ -0,0 +1,147 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/screens/events/index.dart'; +import 'package:furman_now/src/screens/home/index.dart'; +import 'package:furman_now/src/screens/info/index.dart'; +import 'package:furman_now/src/screens/map/index.dart'; +import 'package:furman_now/src/screens/student_id/index.dart'; +import 'package:furman_now/src/utils/theme.dart'; +import 'package:navbar_router/navbar_router.dart'; + +class App extends StatelessWidget { + const App({super.key}); + + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Furman Now!', + home: const MainPage(), + theme: myFurmanTheme, + ); + } +} + +class MainPage extends StatefulWidget { + const MainPage({Key? key}) : super(key: key); + + @override + State createState() => _MainPageState(); +} + +class _MainPageState extends State { + List items = [ + NavbarItem(Icons.home_outlined, 'Home', backgroundColor: colors[0]), + NavbarItem(Icons.map_outlined, 'Map', backgroundColor: colors[0]), + NavbarItem(Icons.person_outline, 'Meal ID', backgroundColor: colors[0]), + NavbarItem(Icons.calendar_month_outlined, 'Events', backgroundColor: colors[0]), + NavbarItem(Icons.info_outline, 'Info', backgroundColor: colors[0]), + ]; + + final Map> _routes = const { + 0: { + '/': HomeScreen(), + // FeedDetail.route: FeedDetail(), + }, + 1: { + '/': MapScreen(), + // ProductDetail.route: ProductDetail(), + // ProductComments.route: ProductComments(), + }, + 2: { + '/': StudentIdScreen(), + // ProductDetail.route: ProductDetail(), + // ProductComments.route: ProductComments(), + }, + 3: { + '/': EventsScreen(), + // ProfileEdit.route: ProfileEdit(), + }, + 4: { + '/': InfoScreen(), + // ProfileEdit.route: ProfileEdit(), + }, + }; + + void showSnackBar() { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + behavior: SnackBarBehavior.floating, + duration: Duration(milliseconds: 600), + margin: EdgeInsets.only( + bottom: kBottomNavigationBarHeight + 2, right: 2, left: 2), + content: Text('Tap back button again to exit'), + ), + ); + } + + void hideSnackBar() { + ScaffoldMessenger.of(context).hideCurrentSnackBar(); + } + + DateTime oldTime = DateTime.now(); + DateTime newTime = DateTime.now(); + + @override + Widget build(BuildContext context) { + final size = MediaQuery.of(context).size; + return Scaffold( + resizeToAvoidBottomInset: false, + body: NavbarRouter( + errorBuilder: (context) { + return const Center(child: Text('Error 404')); + }, + isDesktop: size.width > 600 ? true : false, + onBackButtonPressed: (isExitingApp) { + if (isExitingApp) { + newTime = DateTime.now(); + int difference = newTime.difference(oldTime).inMilliseconds; + oldTime = newTime; + if (difference < 1000) { + hideSnackBar(); + return isExitingApp; + } else { + showSnackBar(); + return false; + } + } else { + return isExitingApp; + } + }, + destinationAnimationCurve: Curves.fastOutSlowIn, + destinationAnimationDuration: 600, + decoration: NavbarDecoration( + selectedLabelTextStyle: const TextStyle(color: Colors.deepPurple), + showUnselectedLabels: true, + unselectedLabelTextStyle: + const TextStyle(color: Colors.black, fontSize: 10), + selectedIconTheme: const IconThemeData(color: Colors.deepPurple), + isExtended: size.width > 800 ? true : false, + navbarType: BottomNavigationBarType.fixed), + // onChanged: (x) { + // debugPrint('index changed $x'); + // }, + backButtonBehavior: BackButtonBehavior.rememberHistory, + destinations: [ + for (int i = 0; i < items.length; i++) + DestinationRouter( + navbarItem: items[i], + destinations: [ + for (int j = 0; j < _routes[i]!.keys.length; j++) + Destination( + route: _routes[i]!.keys.elementAt(j), + widget: _routes[i]!.values.elementAt(j), + ), + ], + initialRoute: _routes[i]!.keys.first, + ), + ], + ), + ); + } +} + +Future navigate(BuildContext context, String route, + {bool isDialog = false, + bool isRootNavigator = true, + Map? arguments}) => + Navigator.of(context, rootNavigator: isRootNavigator) + .pushNamed(route, arguments: arguments); diff --git a/lib/src/layouts/main/index.dart b/lib/src/layouts/main/index.dart new file mode 100644 index 0000000..da17dea --- /dev/null +++ b/lib/src/layouts/main/index.dart @@ -0,0 +1,49 @@ +import 'package:flutter/material.dart'; + +class MainLayout extends StatelessWidget { + const MainLayout({ + Key? key, + this.body, + }) : super(key: key); + + final Widget? body; + + void _onItemTapped(int index) { + // Navigate to the second screen using a named route. + // Navigator.pushNamed(context, '/second'); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: body, + bottomNavigationBar: BottomNavigationBar( + items: const [ + BottomNavigationBarItem( + icon: Icon(Icons.home), + label: 'Home', + ), + BottomNavigationBarItem( + icon: Icon(Icons.map), + label: 'Map', + ), + BottomNavigationBarItem( + icon: Icon(Icons.perm_identity), + label: 'Meal Card', + ), + BottomNavigationBarItem( + icon: Icon(Icons.calendar_month), + label: 'Events', + ), + BottomNavigationBarItem( + icon: Icon(Icons.info_outline), + label: 'Info', + ), + ], + currentIndex: 0, + selectedItemColor: Colors.grey[700], + onTap: _onItemTapped, + ), + ); + } +} \ No newline at end of file diff --git a/lib/src/routes/index.dart b/lib/src/routes/index.dart new file mode 100644 index 0000000..3eff20e --- /dev/null +++ b/lib/src/routes/index.dart @@ -0,0 +1,15 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/screens/home/index.dart'; + +Route routes(RouteSettings settings) { + switch (settings.name) { + case '/': + return MaterialPageRoute(builder: (_) => const HomeScreen()); + // case '/home': + // return MaterialPageRoute(builder: (_) => HomeScreen()); + // case '/auth': + // return MaterialPageRoute(builder: (_) => AuthenticationScreen()); + default: + return MaterialPageRoute(builder: (_) => const HomeScreen()); + } +} diff --git a/lib/src/screens/events/index.dart b/lib/src/screens/events/index.dart new file mode 100644 index 0000000..9c4878b --- /dev/null +++ b/lib/src/screens/events/index.dart @@ -0,0 +1,113 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/utils/date_range.dart'; +import 'package:furman_now/src/utils/theme.dart'; +import 'package:furman_now/src/widgets/header.dart'; +import 'package:furman_now/src/widgets/home/events/events_list.dart'; +import 'package:furman_now/src/widgets/scroll_view_height.dart'; +import 'package:intl/intl.dart'; + +class EventsScreen extends StatelessWidget { + const EventsScreen({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Container( + color: Colors.grey[100], + child: SafeArea( + child: Padding( + padding: const EdgeInsets.only(bottom: kBottomNavigationBarHeight), + child: Stack( + fit: StackFit.loose, + children: [ + SizedBox( + width: double.infinity, + height: double.infinity, + child: Align( + alignment: Alignment.topLeft, + child: Container( + padding: const EdgeInsets.symmetric(horizontal: 30), + width: double.infinity, + height: 100, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Wrap( + crossAxisAlignment: WrapCrossAlignment.center, + children: [ + Icon(Icons.calendar_month_outlined, size: 35, color: Colors.grey[700]), + const SizedBox(width: 12), + Text("Events", style: furmanTextStyle(TextStyle(color: Colors.grey[900], fontSize: 28, fontWeight: FontWeight.w700))), + ], + ), + ], + ), + ), + ), + ), + ScrollViewWithHeight( + child: Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.vertical(top: Radius.circular(30)), + ), + padding: const EdgeInsets.symmetric(vertical: 20), + margin: const EdgeInsets.only(top: 100), + width: double.infinity, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const HeaderWidget(title: "Today"), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 20), + child: EventsList() + ), + const HeaderWidget(title: "Tomorrow"), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 20), + child: EventsList(dateRange: constructDateRange( + DateTime.now().add(const Duration(days: 1)), + DateTime.now().add(const Duration(days: 1)), + )), + ), + ...[for(var i=2; i<7; i+=1) i].map((i) { + var date = DateTime.now().add(Duration(days: i)); + var dayName = DateFormat('EEEE').format(date); + return Wrap( + children: [ + HeaderWidget(title: dayName), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 20), + child: EventsList(dateRange: constructDateRange( + date, + date, + )), + ), + ], + ); + }), + Center(child: + Wrap( + direction: Axis.vertical, + crossAxisAlignment: WrapCrossAlignment.center, + children: const [ + Text("Need more events?"), + Text("Syncdin"), + Text("Athletics"), + Text("CLPs"), + ], + ), + ), + ], + ), + ), + ), + ], + ), + ), + ), + ), + ); + } +} diff --git a/lib/src/screens/home/index.dart b/lib/src/screens/home/index.dart new file mode 100644 index 0000000..26e1162 --- /dev/null +++ b/lib/src/screens/home/index.dart @@ -0,0 +1,96 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/utils/greeting.dart'; +import 'package:furman_now/src/utils/theme.dart'; +import 'package:furman_now/src/widgets/header.dart'; +import 'package:furman_now/src/widgets/home/events/events_list.dart'; +import 'package:furman_now/src/widgets/home/restaurants/restaurants_list.dart'; +import 'package:furman_now/src/widgets/home/transportation/transportation_card.dart'; +import 'package:furman_now/src/widgets/scroll_view_height.dart'; + +class HomeScreen extends StatelessWidget { + const HomeScreen({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Container( + color: const Color(0xffb7acc9), + child: SafeArea( + child: Container( + color: Colors.grey[100], + padding: const EdgeInsets.only(bottom: kBottomNavigationBarHeight), + child: Stack( + fit: StackFit.loose, + children: [ + Container( + width: double.infinity, + height: double.infinity, + decoration: const BoxDecoration( + gradient: LinearGradient( + begin: Alignment.topCenter, + end: Alignment.bottomCenter, + colors: [ + Color(0xffb7acc9), + Color(0xffb7acc9), + ], // Gradient from https://learnui.design/tools/gradient-generator.html + tileMode: TileMode.mirror, + ), + ), + child: Align( + alignment: Alignment.topLeft, + child: Container( + padding: const EdgeInsets.all(40), + width: double.infinity, + height: 200, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text("${greeting()},\nMichael", style: furmanTextStyle(const TextStyle(color: Color(0xff26183d), fontSize: 36, fontWeight: FontWeight.w800))), + const SizedBox(height: 5), + Text("It's 76º and partly cloudy", style: furmanTextStyle(const TextStyle(color: Color(0xff26183d), fontSize: 16, fontWeight: FontWeight.w500))), + ], + ), + ), + ), + ), + ScrollViewWithHeight( + child: Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.vertical(top: Radius.circular(30)), + ), + padding: const EdgeInsets.symmetric(vertical: 20), + margin: const EdgeInsets.only(top: 200), + width: double.infinity, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const HeaderWidget( + title: "Today's Events", + link: HeaderLink(text: "View more", href: ""), + ), + Padding( + padding: const EdgeInsets.symmetric(horizontal: 20), + child: EventsList(), + ), + const HeaderWidget(title: "Food & Dining"), + const RestaurantsList(), + const HeaderWidget(title: "Transportation"), + const Padding( + padding: EdgeInsets.symmetric(horizontal: 20), + child: TransportationCard(), + ), + ], + ), + ), + ), + ], + ), + ), + ), + ), + ); + } +} + diff --git a/lib/src/screens/info/index.dart b/lib/src/screens/info/index.dart new file mode 100644 index 0000000..51842fc --- /dev/null +++ b/lib/src/screens/info/index.dart @@ -0,0 +1,89 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/utils/theme.dart'; +import 'package:furman_now/src/widgets/info/info_card.dart'; +import 'package:furman_now/src/widgets/scroll_view_height.dart'; + +class InfoScreen extends StatelessWidget { + const InfoScreen({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Container( + color: Colors.grey[100], + child: SafeArea( + child: Padding( + padding: const EdgeInsets.only(bottom: kBottomNavigationBarHeight), + child: Stack( + fit: StackFit.loose, + children: [ + SizedBox( + width: double.infinity, + height: double.infinity, + child: Align( + alignment: Alignment.topLeft, + child: Container( + padding: const EdgeInsets.symmetric(horizontal: 30), + width: double.infinity, + height: 100, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Wrap( + crossAxisAlignment: WrapCrossAlignment.center, + children: [ + Icon(Icons.info_outline, size: 35, color: Colors.grey[700]), + const SizedBox(width: 12), + Text("Info", style: furmanTextStyle(TextStyle(color: Colors.grey[900], fontSize: 28, fontWeight: FontWeight.w700))), + ], + ), + ], + ), + ), + ), + ), + ScrollViewWithHeight( + child: Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.vertical(top: Radius.circular(30)), + ), + padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 20), + margin: const EdgeInsets.only(top: 100), + width: double.infinity, + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + InfoCard( + color: Colors.red.shade50, + icon: Icons.local_hospital, + title: "Health and Safety", + description: "Important contact information and links regarding student health and safety.", + ), + const SizedBox(height: 10), + InfoCard( + color: Colors.deepPurple.shade50, + icon: Icons.phone, + title: "Contacts", + description: "Important contact information and links regarding student health and safety.", + ), + const SizedBox(height: 10), + InfoCard( + color: Colors.blue.shade50, + icon: Icons.access_time, + title: "Hours", + description: "Important contact information and links regarding student health and safety.", + ), + ], + ), + ), + ), + ], + ), + ), + ), + ), + ); + } +} diff --git a/lib/src/screens/map/index.dart b/lib/src/screens/map/index.dart new file mode 100644 index 0000000..e44c56c --- /dev/null +++ b/lib/src/screens/map/index.dart @@ -0,0 +1,187 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_map/flutter_map.dart'; +import 'package:flutter_svg/svg.dart'; +import 'package:furman_now/src/utils/theme.dart'; +import 'package:furman_now/src/widgets/map/filter_chip.dart'; +import 'package:furman_now/src/widgets/map/rotate_compass.dart'; +import 'package:latlong2/latlong.dart'; + +class MapScreen extends StatefulWidget { + const MapScreen({Key? key}) : super(key: key); + + @override + State createState() => _MapScreenState(); +} + +class _MapScreenState extends State + with SingleTickerProviderStateMixin { + final MapController _mapController = MapController(); + + late final AnimationController _animationController = AnimationController( + duration: const Duration(milliseconds: 300), + vsync: this, + ); + + var _rotation = 0.0; + + @override + void initState() { + super.initState(); + _mapController.mapEventStream.listen((event) { + if (event is MapEventRotate) { + setState(() { + _rotation = _mapController.rotation * (2 * pi) / 360; + }); + } + }); + } + + @override + void dispose() { + super.dispose(); + _animationController.dispose(); + } + + void resetRotation() async { + // take the shortest rotation path + var end = _mapController.rotation > 180 ? 360.0 : 0.0; + var animation = Tween( + begin: _mapController.rotation, + end: end, + ).animate(CurvedAnimation( + parent: _animationController, + curve: Curves.easeInOut, + )); + + animationListener() { + _mapController.rotate(animation.value); + } + + animation.addListener(animationListener); + + await _animationController.forward(); + + animation.removeListener(animationListener); + _animationController.reset(); + + _mapController.rotate(0); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Container( + color: const Color(0xffb7acc9), + child: SafeArea( + top: false, + child: Padding( + padding: const EdgeInsets.only(bottom: kBottomNavigationBarHeight), + child: Stack( + children: [ + FlutterMap( + mapController: _mapController, + options: MapOptions( + center: LatLng(34.925926, -82.439397), + enableMultiFingerGestureRace: true, + rotationWinGestures: MultiFingerGesture.all, + pinchZoomThreshold: 0.2, + rotationThreshold: 8, + zoom: 15, + minZoom: 12, + maxZoom: 18, + ), + layers: [ + TileLayerOptions( + urlTemplate: + "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + userAgentPackageName: 'edu.furman.now', + ), + ], + nonRotatedChildren: [ + AttributionWidget( + attributionBuilder: (BuildContext context) { + return const ColoredBox( + color: Color(0xCCFFFFFF), + child: Padding( + padding: EdgeInsets.all(3), + child: Text("©️ OpenStreetMap contributors"), + ), + ); + }, + ), + ], + ), + Positioned( + top: 12, + left: 0, + right: 0, + child: SafeArea( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Padding( + padding: const EdgeInsets.symmetric(horizontal: 12), + child: Container( + width: double.infinity, + height: 50, + padding: const EdgeInsets.only(left: 10, right: 20), + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(60)), + boxShadow: [ + BoxShadow( + color: Color(0x33000000), + blurRadius: 8, + ), + ], + ), + child: Stack( + children: [ + Align( + alignment: Alignment.centerLeft, + child: Wrap( + crossAxisAlignment: WrapCrossAlignment.center, + children: [ + SvgPicture.asset("assets/images/bell-tower.svg", color: Theme.of(context).primaryColor, height: 32), + const SizedBox(width: 10), + Text( + "Search locations", + style: furmanTextStyle(TextStyle( + fontSize: 18, + fontWeight: FontWeight.w500, + color: Colors.grey.shade500, + )), + ), + ], + ), + ), + ], + ), + ), + ), + // const SizedBox(height: 12), + SingleChildScrollView( + padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 12), + scrollDirection: Axis.horizontal, + child: Wrap( + spacing: 6, + children: const [ + MapFilterChip(icon: Icons.restaurant, text: "Restaurants"), + MapFilterChip(icon: Icons.train, text: "Transportation"), + MapFilterChip(icon: Icons.school, text: "Campus Buildings"), + ], + ), + ), + MapRotateCompass(rotation: _rotation, resetRotation: resetRotation), + ], + ), + ), + ), + ], + ), + ), + ), + ), + ); + } +} diff --git a/lib/src/screens/student_id/index.dart b/lib/src/screens/student_id/index.dart new file mode 100644 index 0000000..129b8c9 --- /dev/null +++ b/lib/src/screens/student_id/index.dart @@ -0,0 +1,72 @@ +import 'dart:async'; + +import 'package:flutter/material.dart'; +import 'package:barcode_widget/barcode_widget.dart'; +import 'package:furman_now/src/services/get_app/barcode/barcode_service.dart'; +import 'package:furman_now/src/utils/theme.dart'; + +class StudentIdScreen extends StatefulWidget { + const StudentIdScreen({Key? key}) : super(key: key); + + @override + State createState() => _StudentIdScreenState(); +} + +class _StudentIdScreenState extends State { + String barcodeNumber = BarcodeService.generateGetBarcode(); + Timer? timer; + + @override + void initState() { + super.initState(); + + timer = Timer.periodic( + const Duration(seconds: 10), + updateBarcode, + ); + } + + void updateBarcode(Timer timer) { + setState(() { + barcodeNumber = BarcodeService.generateGetBarcode(); + }); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Container( + color: const Color(0xffb7acc9), + child: SafeArea( + child: ListView( + padding: const EdgeInsets.all(40), + children: [ + Text( + "Furman ID", + style: furmanTextStyle(const TextStyle(color: Color(0xff26183d), fontSize: 36, fontWeight: FontWeight.w800)), + ), + const SizedBox(height: 200), + Container( + decoration: const BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.all(Radius.circular(10)), + ), + // hack since the barcode has a weird intrinsic size for some reason + child: LayoutBuilder( + builder: (BuildContext context, BoxConstraints constraints) { + return BarcodeWidget( + barcode: Barcode.pdf417(moduleHeight: 4), + data: barcodeNumber, + margin: const EdgeInsets.all(10), + height: constraints.maxWidth / 3, + ); + }, + ), + ), + ], + ), + ), + ), + ); + } +} diff --git a/lib/src/services/events/event.dart b/lib/src/services/events/event.dart new file mode 100644 index 0000000..da7d440 --- /dev/null +++ b/lib/src/services/events/event.dart @@ -0,0 +1,13 @@ +class Event { + Event({ + required this.title, + required this.time, + required this.location, + required this.category + }); + + final String title; + final DateTime time; + final String location; + final String category; +} \ No newline at end of file diff --git a/lib/src/services/events/events_service.dart b/lib/src/services/events/events_service.dart new file mode 100644 index 0000000..44c6586 --- /dev/null +++ b/lib/src/services/events/events_service.dart @@ -0,0 +1,174 @@ +import 'dart:convert'; + +import 'package:furman_now/src/services/events/event.dart'; +import 'package:http/http.dart' as http; + +class EventsService { + static Future> fetchEvents() async { + var athleticsEvents = await fetchAthleticsEvents(); + var clpEvents = await fetchClpEvents(); + List eventsList = List.from(athleticsEvents)..addAll(clpEvents); + eventsList.sort((Event a, Event b) => a.time.compareTo(b.time)); + return eventsList; + } + + static Future> fetchAthleticsEvents() async { + final response = await http + .get(Uri.parse("https://cs.furman.edu/~csdaemon/FUNow/athleticsGet.php")); + + if (response.statusCode == 200) { + // If the server did return a 200 OK response, + // then parse the JSON. + final eventsJson = jsonDecode(response.body); + return (eventsJson["results"] as List).map((event) => + AthleticsEvent.fromJson(event) + ); + } else { + // If the server did not return a 200 OK response, + // then throw an exception. + throw Exception('Failed to load athletics events.'); + } + } + + static Future> fetchClpEvents() async { + final response = await http + .get(Uri.parse("https://cs.furman.edu/~csdaemon/FUNow/clpGet.php")); + + if (response.statusCode == 200) { + // If the server did return a 200 OK response, + // then parse the JSON. + final eventsJson = jsonDecode(response.body); + return (eventsJson["results"] as List).map((event) => + ClpEvent.fromJson(event) + ); + } else { + // If the server did not return a 200 OK response, + // then throw an exception. + throw Exception('Failed to load athletics events.'); + } + } +} + +class AthleticsEvent implements Event { + @override + final String title; + @override + final DateTime time; + @override + final String location; + @override + final String category = "Athletics"; + + final String sportTitle; + final String sportShort; + final AthleticsEventLocation locationIndicator; + final String opponent; + + AthleticsEvent._({ + required this.title, + required this.time, + required this.location, + + required this.sportTitle, + required this.sportShort, + required this.locationIndicator, + required this.opponent, + }); + + factory AthleticsEvent({ + required time, + required location, + required sportTitle, + required sportShort, + required locationIndicator, + required opponent, + }) { + // Determine AthleticsEventLocation from string + AthleticsEventLocation eventLocationIndicator; + switch(locationIndicator) { + case ("H"): + eventLocationIndicator = AthleticsEventLocation.home; + break; + case ("A"): + eventLocationIndicator = AthleticsEventLocation.away; + break; + case ("N"): + default: + eventLocationIndicator = AthleticsEventLocation.neither; + break; + } + + // Generate event title + var eventTitleSeparator = + eventLocationIndicator == AthleticsEventLocation.away + ? "at" + : "vs"; + + return AthleticsEvent._( + title: '$sportTitle $eventTitleSeparator $opponent', + time: time, + location: location, + sportTitle: sportTitle, + sportShort: sportShort, + locationIndicator: eventLocationIndicator, + opponent: opponent, + ); + } + + factory AthleticsEvent.fromJson(Map json) { + return AthleticsEvent( + sportTitle: json["sportTitle"], + sportShort: json["sportShort"], + time: DateTime.parse(json["eventdate"]), + location: json["location"], + locationIndicator: json["location_indicator"], + opponent: json["opponent"], + ); + } +} + +enum AthleticsEventLocation { + home, + away, + neither, +} + +class ClpEvent implements Event { + @override + final String title; + @override + DateTime get time { + return startTime; + } + @override + final String location; + @override + final String category; + + final DateTime startTime; + final DateTime endTime; + final String organization; + final String description; + + ClpEvent({ + required this.title, + required this.startTime, + required this.endTime, + required this.location, + required this.category, + required this.organization, + required this.description, + }); + + factory ClpEvent.fromJson(Map json) { + return ClpEvent( + title: json["title"], + startTime: DateTime.parse(json["date"] + " " + json["start"]), + endTime: DateTime.parse(json["date"] + " " + json["end"]), + location: json["location"], + category: json["eventType"], + organization: json["organization"], + description: json["description"], + ); + } +} \ No newline at end of file diff --git a/lib/src/services/get_app/barcode/barcode_service.dart b/lib/src/services/get_app/barcode/barcode_service.dart new file mode 100644 index 0000000..7a3eb22 --- /dev/null +++ b/lib/src/services/get_app/barcode/barcode_service.dart @@ -0,0 +1,90 @@ +import 'dart:convert'; +import 'package:crypto/crypto.dart'; +import 'dart:typed_data'; +import 'package:convert/convert.dart'; +import 'package:furman_now/secrets.dart'; + +class BarcodeService { + static generateGetBarcode({ int? timestamp }) { + // seconds since epoch + timestamp ??= DateTime.now().millisecondsSinceEpoch ~/ 1000; + + // final timestamp = DateTime.now().millisecondsSinceEpoch ~/ 1000; + // const timestamp = 1661567550; + + final timestampBytes = _int64BigEndianBytes(timestamp); + + const cbordKey = Secrets.cbordKey; + const institutionKey = Secrets.institutionKey; + const patronKey = Secrets.testPatronKey; + + final cbordKeyBytes = Uint8List.fromList(hex.decode(utf8.decode(base64Decode(cbordKey)))); + final institutionKeyBytes = Uint8List.fromList(hex.decode(institutionKey)); + final patronKeyBytes = _int32LittleEndianBytes(patronKey); + final sharedKeyBytes = _xorEncrypt(cbordKeyBytes, institutionKeyBytes); + + final checksumDigit = _luhnGenerate(patronKey.toString()); + + // print(hex.encode(_int32BigEndianBytes(timestamp))); + final barcodeOtc = int.parse(_hotp(sharedKeyBytes, timestampBytes, 9, hash: sha256)); + final barcodeOtcBytes = _int32LittleEndianBytes(barcodeOtc); + + final encryptedBytes = _xorEncrypt(patronKeyBytes, barcodeOtcBytes); + final encrypted = ByteData.view(encryptedBytes.buffer).getInt32(0, Endian.little); + + final barcodeData = "${timestamp.toString().padLeft(10, "0")}1${encrypted.toString().padLeft(10, "0")}$checksumDigit"; + + return barcodeData; + } + + static int _luhnGenerate(String code) { + const computed = [0, 2, 4, 6, 8, 1, 3, 5, 7, 9]; + var sum = 0, + digit = 0, + i = code.length, + even = false; + + while (i-- > 0) { + digit = int.parse(code[i]); + sum += (even = !even) ? computed[digit] : digit; + } + + return (sum * 9) % 10; + } + + static Uint8List _xorEncrypt(List subject, List key) { + var out = Uint8List(subject.length); + for (int i = 0; i < subject.length; i++) { + out[i] = subject[i] ^ key[i % key.length]; + } + return out; + } + + static _hotp(Uint8List key, Uint8List counter, int digits, { Hash hash = sha256 }) { + final mac = Uint8List.fromList(Hmac(hash, key).convert(counter).bytes); + final offset = mac[mac.length - 1] & 0x0f; + final binary = ByteData.view(mac.buffer).getInt32(offset, Endian.big) & 0x7fffffff; + var binaryString = binary.toString(); + if (binaryString.length - digits > 0) { + binaryString = binaryString.substring(binaryString.length - digits); + } + binaryString = binaryString.padLeft(digits, "0"); + return binaryString; + } + + static Uint8List _int32LittleEndianBytes(int value) => + Uint8List(4)..buffer.asByteData().setInt32(0, value, Endian.little); + + static Uint8List _int64BigEndianBytes(int value) { + var sendValueBytes = ByteData(8); + // setUint64 not implemented on some systems so use setUint32 in + // those cases. Leading zeros to pad to equal 64 bit. + // Epoch as 32-bit good until 2038 Jan 19 @ 03:14:07 + try { + sendValueBytes.setUint64(0, value, Endian.big); + } on UnsupportedError { + sendValueBytes.setUint32(0, value, Endian.big); + } + return sendValueBytes.buffer.asUint8List(); + } +} diff --git a/lib/src/services/get_app/barcode/barcode_test.dart b/lib/src/services/get_app/barcode/barcode_test.dart new file mode 100644 index 0000000..e938b33 --- /dev/null +++ b/lib/src/services/get_app/barcode/barcode_test.dart @@ -0,0 +1,12 @@ +import 'dart:io'; + +import "barcode_service.dart"; + +void main(List args) { + // while(true) { + // print(BarcodeService.generateGetBarcode()); + // sleep(const Duration(seconds:1)); + // } + + print(BarcodeService.generateGetBarcode(timestamp: int.parse(args[0]))); +} diff --git a/lib/src/services/get_app/barcode/results.txt b/lib/src/services/get_app/barcode/results.txt new file mode 100644 index 0000000..1bbe2e3 --- /dev/null +++ b/lib/src/services/get_app/barcode/results.txt @@ -0,0 +1,66 @@ +1661796958104839794376 +1661796959104317426886 +1661796960108255460226 +1661796961106920860666 +1661796962106199730706 +1661796963100729423146 +1661796964100826751576 +1661796965105980662356 +1661796966100792147766 +1661796967103886508706 +1661796968101562397906 +1661796969109347522246 +1661796970104476755206 +1661796971106085404376 +1661796972100553491616 +1661796973101404143146 +1661796974105377734796 +1661796975107065989056 +1661796976105135326536 +1661796977100360805266 +1661796978108364147506 +1661796979106002091456 +1661796980100164117926 +1661796981109290599786 +1661796982107498877976 +1661796983100444791306 +1661796984103380694806 +1661796985105701206076 +1661796986103876556676 +1661796987102846575686 +1661796988109894924956 +1661796989109869297986 +1661796990105289985306 +1661796991107971540556 +1661796992109255791256 +1661796993104515591796 +1661796994105087857776 +1661796995100628463616 +1661796996109645970966 +1661796997102192728376 +1661796998101976381966 +1661796999100836277786 +1661797000107503534346 +1661797001100639859056 +1661797002101528598866 +1661797003105623778966 +1661797004107907863076 +1661797005109315398796 +1661797006100768643546 +1661797007101212204946 +1661797008103273524436 +1661797009101866267696 +1661797010102857038416 +1661797011102685511796 +1661797012100193444876 +1661797013103722518116 +1661797014108411880946 +1661797015101560642386 +1661797016109488069706 +1661797017100723908746 +1661797018103949619536 +1661797019109992965496 +1661797020106962817906 +1661797021108226414706 +1661797022106594105606 +1661797023100233692336 diff --git a/lib/src/services/get_app/user/user_service.dart b/lib/src/services/get_app/user/user_service.dart new file mode 100644 index 0000000..7f26ba3 --- /dev/null +++ b/lib/src/services/get_app/user/user_service.dart @@ -0,0 +1,3 @@ +class UserService { + +} \ No newline at end of file diff --git a/lib/src/services/restaurants/restaurant_service.dart b/lib/src/services/restaurants/restaurant_service.dart new file mode 100644 index 0000000..7998d77 --- /dev/null +++ b/lib/src/services/restaurants/restaurant_service.dart @@ -0,0 +1,227 @@ +import 'dart:convert'; + +import 'package:flutter/painting.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:http/http.dart' as http; + +class RestaurantService { + static Future> fetchRestaurants() async { + var restaurants = (await _fetchRestaurants()).toList(); + await _fetchRestaurantHours(restaurants); + return restaurants; + } + + static Future> _fetchRestaurants() async { + final response = await http + .get(Uri.parse("https://cs.furman.edu/~csdaemon/FUNow/restaurantGet.php")); + + if (response.statusCode == 200) { + // If the server did return a 200 OK response, + // then parse the JSON. + final restaurantsJson = jsonDecode(response.body); + return (restaurantsJson["results"] as List).map((restaurant) => + Restaurant.fromJson(restaurant) + ); + } else { + // If the server did not return a 200 OK response, + // then throw an exception. + throw Exception('Failed to load athletics events.'); + } + } + + static Future _fetchRestaurantHours(List restaurants) async { + final response = await http + .get(Uri.parse("https://cs.furman.edu/~csdaemon/FUNow/restaurantHoursGet.php")); + + if (response.statusCode == 200) { + // If the server did return a 200 OK response, + // then parse the JSON. + final hoursListJson = jsonDecode(response.body); + for (var hoursJson in (hoursListJson["results"] as List)) { + var hours = Hours.fromJson(hoursJson); + restaurants.firstWhere((restaurant) => restaurant.id == hours.id).hoursList.add(hours); + } + } else { + // If the server did not return a 200 OK response, + // then throw an exception. + throw Exception('Failed to load athletics events.'); + } + } +} + +class Restaurant { + int id; + String name; + String? shortName; + String location; + LatLng mapLocation; + int frequency; + int busyness; + String? url; + List hoursList = []; + + Restaurant({ + required this.id, + required this.name, + this.shortName, + required this.location, + required this.mapLocation, + required this.frequency, + required this.busyness, + this.url, + }); + + bool get isOpen { + for(var hours in hoursList) { + var now = DateTime.now(); + var today = Weekday.values[now.weekday - 1]; + if (hours.daysOfWeek.days[today] == true) { + var currentTime = Duration(hours: now.hour, minutes: now.minute, seconds: now.second); + if(hours.startTime != null && hours.endTime != null) { + if (hours.startTime! < currentTime && hours.endTime! > currentTime) { + return true; + } + } + } + } + return false; + } + + // TODO: this is the absolute worst + String get imageUri { + return "https://cs.furman.edu/~csdaemon/FUNow/appIcons/$name Icon.png"; + } + + ImageProvider get image { + return NetworkImage(imageUri); + } + + factory Restaurant.fromJson(Map json) { + return Restaurant( + id: int.parse(json["id"]), + name: json["fullname"], + shortName: json["name"], + location: json["location"], + mapLocation: LatLng(double.parse(json["latitude"]), double.parse(json["longitude"])), + frequency: int.parse(json["frequency"]), + busyness: int.parse(json["busyness"]), + url: (json["url"] != null && (json["url"] as String).isNotEmpty) ? json["url"] : null, + ); + } +} + +class Hours { + int id; + String? meal; + Duration? startTime; + Duration? endTime; + DaysOfWeek daysOfWeek; + int dayOrder; + + Hours({ + required this.id, + this.meal, + this.startTime, + this.endTime, + required this.daysOfWeek, + required this.dayOrder, + }); + + static Duration _getDurationFromString(String s) { + var timeComponents = s.split(":"); + var hours = int.parse(timeComponents[0]); + var minutes = int.parse(timeComponents[1]); + var seconds = int.parse(timeComponents[2]); + + return Duration(hours: hours, minutes: minutes, seconds: seconds); + } + + factory Hours.fromJson(Map json) { + return Hours( + id: int.parse(json["id"]), + meal: json["meal"], + startTime: (json["start"] != null) ? _getDurationFromString(json["start"]) : null, + endTime: (json["end"] != null) ? _getDurationFromString(json["end"]) : null, + daysOfWeek: DaysOfWeek.parse(json["dayOfWeek"]), + dayOrder: int.parse(json["dayOrder"]), + ); + } +} + +class DaysOfWeek { + final Weekday startDay; + final Weekday endDay; + final Map days; + + DaysOfWeek({ + required this.startDay, + required this.endDay, + required this.days, + }); + + static Weekday _getDayFromShortName(String shortName) { + switch(shortName.toLowerCase()) { + case "mon": + return Weekday.monday; + case "tue": + return Weekday.tuesday; + case "wed": + return Weekday.wednesday; + case "thu": + return Weekday.thursday; + case "fri": + return Weekday.friday; + case "sat": + return Weekday.saturday; + case "sun": + return Weekday.sunday; + default: + throw "Invalid date short name."; + } + } + + factory DaysOfWeek.parse(String s) { + final Map days = { for (var e in Weekday.values) e : false }; + + // single day + if (!s.contains("-")) { + var day = _getDayFromShortName(s); + days.update(day, (val) => true); + return DaysOfWeek(startDay: day, endDay: day, days: days); + } + + // date range + var dayNames = s.split("-"); + final startDay = _getDayFromShortName(dayNames[0]); + final endDay = _getDayFromShortName(dayNames[1]); + int i = startDay.index; + + // loop through to add all dates in date range to list + while(i != endDay.index) { + days.update(Weekday.values[i], (val) => true); + + if (i < Weekday.values.length - 1) { + i++; + } else { + i = 0; + } + } + days.update(endDay, (val) => true); + + return DaysOfWeek( + startDay: startDay, + endDay: endDay, + days: days, + ); + } +} + +enum Weekday { + monday, + tuesday, + wednesday, + thursday, + friday, + saturday, + sunday, +} diff --git a/lib/src/services/restaurants/restaurant_test.dart b/lib/src/services/restaurants/restaurant_test.dart new file mode 100644 index 0000000..25fb71e --- /dev/null +++ b/lib/src/services/restaurants/restaurant_test.dart @@ -0,0 +1,29 @@ +import 'dart:convert'; + +import "restaurant_service.dart"; + +void main() async { + var restaurants = await RestaurantService.fetchRestaurants(); + for (var restaurant in restaurants) { + print(restaurant.name + " " + (restaurant.isOpen ? "is open" : "is closed")); + } + // print("Start day: ${restaurants.firstWhere((restaurant) => restaurant.id == 22).hoursList[0].daysOfWeek.startDay}"); + // print("End day: ${restaurants.firstWhere((restaurant) => restaurant.id == 22).hoursList[0].daysOfWeek.endDay}"); + // print("Days of week: ${restaurants.firstWhere((restaurant) => restaurant.id == 22).hoursList[0].daysOfWeek.days}"); + + // var testRestaurant = Restaurant.fromJson(jsonDecode(''' + // { + // "id":"10", + // "name":null, + // "fullname":"Papa John's Pizza", + // "location":"Off Campus: 1507 Poinsett Hwy", + // "latitude":"34.887977","longitude":"-82.405793", + // "frequency":"10", + // "busyness":"0", + // "url":"https:\/\/www.papajohns.com\/order\/stores-near-me" + // } + // ''')); + + // var testDaysOfWeek = DaysOfWeek.parse("Sat-Mon"); + // print(testDaysOfWeek.days); +} diff --git a/lib/src/services/transportation/bus_503.dart b/lib/src/services/transportation/bus_503.dart new file mode 100644 index 0000000..10ac2d9 --- /dev/null +++ b/lib/src/services/transportation/bus_503.dart @@ -0,0 +1,3 @@ +class TransportationBus503Service { + +} \ No newline at end of file diff --git a/lib/src/services/transportation/saferide_shuttle.dart b/lib/src/services/transportation/saferide_shuttle.dart new file mode 100644 index 0000000..01688c1 --- /dev/null +++ b/lib/src/services/transportation/saferide_shuttle.dart @@ -0,0 +1,3 @@ +class TransportationSafeRideShuttleService { + +} \ No newline at end of file diff --git a/lib/src/services/transportation/transportation_service.dart b/lib/src/services/transportation/transportation_service.dart new file mode 100644 index 0000000..df92cdd --- /dev/null +++ b/lib/src/services/transportation/transportation_service.dart @@ -0,0 +1,3 @@ +class TransportationService { + +} \ No newline at end of file diff --git a/lib/src/utils/date_range.dart b/lib/src/utils/date_range.dart new file mode 100644 index 0000000..be3ea29 --- /dev/null +++ b/lib/src/utils/date_range.dart @@ -0,0 +1,19 @@ +import 'package:flutter/material.dart'; + +DateTimeRange constructDateRange(DateTime startDateTime, DateTime endDateTime) { + var startDate = DateTime( + startDateTime.year, + startDateTime.month, + startDateTime.day, + ); + var endDate = DateTime( + endDateTime.year, + endDateTime.month, + endDateTime.day, + 23, + 59, + 59, + ); + + return DateTimeRange(start: startDate, end: endDate); +} \ No newline at end of file diff --git a/lib/src/utils/greeting.dart b/lib/src/utils/greeting.dart new file mode 100644 index 0000000..cbdb6e8 --- /dev/null +++ b/lib/src/utils/greeting.dart @@ -0,0 +1,12 @@ +String greeting() { + var currentHour = DateTime.now().hour; + if (currentHour > 4 && currentHour < 11) { + return "Good morning"; + } else if (currentHour >= 11 && currentHour < 17) { + return "Good afternoon"; + } else if (currentHour >= 17 && currentHour < 21) { + return "Good evening"; + } else { + return "Good night"; + } +} \ No newline at end of file diff --git a/lib/src/utils/theme.dart b/lib/src/utils/theme.dart new file mode 100644 index 0000000..c0b8189 --- /dev/null +++ b/lib/src/utils/theme.dart @@ -0,0 +1,23 @@ +import 'package:flutter/material.dart'; +import 'package:google_fonts/google_fonts.dart'; + +ThemeData _baseTheme = ThemeData( + primarySwatch: Colors.deepPurple, + bottomNavigationBarTheme: BottomNavigationBarThemeData( + backgroundColor: Colors.grey[100], + unselectedItemColor: Colors.grey[500], + ), + textTheme: TextTheme( + subtitle2: TextStyle( + color: Colors.grey[500], + fontWeight: FontWeight.w500, + fontSize: 14, + ), + ), +); + +ThemeData myFurmanTheme = _baseTheme.copyWith( + textTheme: GoogleFonts.interTextTheme(_baseTheme.textTheme), +); + +var furmanTextStyle = (TextStyle baseStyle) => GoogleFonts.inter(textStyle: baseStyle); diff --git a/lib/src/widgets/header.dart b/lib/src/widgets/header.dart new file mode 100644 index 0000000..93229df --- /dev/null +++ b/lib/src/widgets/header.dart @@ -0,0 +1,54 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/utils/theme.dart'; + +class HeaderWidget extends StatelessWidget { + const HeaderWidget({ + required this.title, + this.link, + Key? key + }) : super(key: key); + + final String title; + final HeaderLink? link; + + @override + Widget build(BuildContext context) { + return Container( + padding: const EdgeInsets.only(left: 40, right: 40, top: 20, bottom: 15), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Text( + title.toUpperCase(), + style: furmanTextStyle(TextStyle( + color: Colors.grey[800], + fontWeight: FontWeight.w900, + fontSize: 18, + )), + ), + if (link != null) + Text( + link!.text, + style: furmanTextStyle(const TextStyle( + color: Color(0xff755898), + fontSize: 12, + fontWeight: FontWeight.bold, + )), + ), + ], + ), + ); + } +} + +@immutable +class HeaderLink { + final String text; + final String href; + + const HeaderLink({ + required this.text, + required this.href, + }); +} diff --git a/lib/src/widgets/home/events/event_card.dart b/lib/src/widgets/home/events/event_card.dart new file mode 100644 index 0000000..4e57950 --- /dev/null +++ b/lib/src/widgets/home/events/event_card.dart @@ -0,0 +1,97 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/services/events/event.dart'; +import 'package:furman_now/src/utils/theme.dart'; +import 'package:google_fonts/google_fonts.dart'; +import 'package:intl/intl.dart'; + +class EventCard extends StatelessWidget { + const EventCard + ( + this.event, + { + Key? key + } + ) : super(key: key); + + final Event event; + + String get eventHour { + var formatter = DateFormat('hh:mm'); + return formatter.format(event.time); + } + + String get eventAmPm { + var formatter = DateFormat('a'); + return formatter.format(event.time); + } + + @override + Widget build(BuildContext context) { + return Container( + decoration: const BoxDecoration( + color: Color(0xfff9f9fb), + borderRadius: BorderRadius.all(Radius.circular(10)) + ), + child: IntrinsicHeight( + child: Row( + children: [ + Container( + padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 5), + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text(eventHour, style: furmanTextStyle(const TextStyle(fontWeight: FontWeight.w700))), + Text(eventAmPm, style: Theme.of(context).textTheme.subtitle2), + ], + ), + ), + VerticalDivider( + width: 2, + thickness: 2, + color: Colors.grey[200], + ), + Flexible( + child: Container( + padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 10), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text(event.title, style: furmanTextStyle(const TextStyle(fontWeight: FontWeight.w600))), + const SizedBox(height: 6), + RichText(text: TextSpan( + style: Theme.of(context).textTheme.subtitle2, + children: [ + WidgetSpan( + alignment: PlaceholderAlignment.middle, + child: Padding( + padding: const EdgeInsets.only(right: 5.0), + child: Icon(Icons.place_outlined, size: 20, color: Colors.grey[500]) + ), + ), + TextSpan(text: event.location), + ], + )), + const SizedBox(height: 2), + RichText(text: TextSpan( + style: Theme.of(context).textTheme.subtitle2, + children: [ + WidgetSpan( + alignment: PlaceholderAlignment.middle, + child: Padding( + padding: const EdgeInsets.only(left: 1.0, right: 6.0), + child: Icon(Icons.sell_outlined, size: 18, color: Colors.grey[500]) + ), + ), + TextSpan(text: event.category), + ], + )), + ], + ), + ), + ), + ], + ), + ), + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/home/events/events_list.dart b/lib/src/widgets/home/events/events_list.dart new file mode 100644 index 0000000..6c40697 --- /dev/null +++ b/lib/src/widgets/home/events/events_list.dart @@ -0,0 +1,95 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/services/events/event.dart'; +import 'package:furman_now/src/services/events/events_service.dart'; +import 'package:furman_now/src/utils/theme.dart'; + +import 'event_card.dart'; + +class EventsList extends StatefulWidget { + final DateTimeRange dateRange; + + const EventsList._({ + required this.dateRange, + Key? key, + }) : super(key: key); + + factory EventsList({ + DateTimeRange? dateRange, + Key? key, + }) { + if (dateRange == null) { + final now = DateTime.now(); + final today = DateTime(now.year, now.month, now.day); + final tonight = DateTime(now.year, now.month, now.day, 23, 59, 59); + dateRange = DateTimeRange(start: today, end: tonight); + } + return EventsList._( + dateRange: dateRange, + key: key, + ); + } + + @override + State createState() => _EventsListState(); +} + +class _EventsListState extends State { + late Future> futureEventList; + + @override + void initState() { + super.initState(); + futureEventList = EventsService.fetchEvents(); + } + + @override + Widget build(BuildContext context) { + return FutureBuilder>( + future: futureEventList, + builder: (context, snapshot) { + if (snapshot.hasData) { + var events = snapshot.data!.where((event) { + return event.time.isAfter(widget.dateRange.start) && event.time.isBefore(widget.dateRange.end); + }); + if (events.isNotEmpty) { + return Column( + children: events.map((event) { + return Padding( + padding: const EdgeInsets.only(bottom: 15), + child: EventCard(event), + ); + }).toList()); + } else { + return Padding( + padding: const EdgeInsets.only(bottom: 15), + child: SizedBox( + width: double.infinity, + height: 50, + child: Center( + child: Text( + "No events today :(", + style: furmanTextStyle(TextStyle( + color: Colors.grey[600], + fontSize: 16, + fontWeight: FontWeight.w600, + )), + ), + ), + ), + ); + } + } else if (snapshot.hasError) { + return Text('${snapshot.error}', style: const TextStyle(color: Colors.red),); + } + + // By default, show a loading spinner. + return const Center( + child: Padding( + padding: EdgeInsets.symmetric(vertical: 25), + child: CircularProgressIndicator() + ), + ); + }, + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/home/restaurants/restaurant_card.dart b/lib/src/widgets/home/restaurants/restaurant_card.dart new file mode 100644 index 0000000..bdc509f --- /dev/null +++ b/lib/src/widgets/home/restaurants/restaurant_card.dart @@ -0,0 +1,110 @@ +import 'package:flutter/material.dart'; +import 'package:palette_generator/palette_generator.dart'; +import 'package:furman_now/src/services/restaurants/restaurant_service.dart'; +import 'package:furman_now/src/utils/theme.dart'; + +class RestaurantCard extends StatefulWidget { + const RestaurantCard({ + required this.restaurant, + Key? key, + }) : super(key: key); + + final Restaurant restaurant; + + @override + State createState() => _RestaurantCardState(); +} + +class _RestaurantCardState extends State { + PaletteGenerator? paletteGenerator; + Color? backgroundColor; + + @override + void initState() { + super.initState(); + _updatePaletteGenerator(); + } + + Future _updatePaletteGenerator() async { + paletteGenerator = await PaletteGenerator.fromImageProvider( + widget.restaurant.image, + maximumColorCount: 1, + ); + if (paletteGenerator != null && paletteGenerator!.colors.toList().isNotEmpty) { + var hslColor = HSLColor.fromColor(paletteGenerator!.colors.toList()[0]); + var newColor = HSLColor.fromAHSL(1, hslColor.hue, 40/100, 90/100); + backgroundColor = newColor.toColor(); + } + setState(() {}); + } + + @override + Widget build(BuildContext context) { + return Container( + width: 150, + height: 175, + decoration: BoxDecoration( + // color: Color(0xfff9f9fb), + color: backgroundColor ?? const Color(0xfff9f9fb), + borderRadius: const BorderRadius.all(Radius.circular(10)), + ), + child: Padding( + padding: const EdgeInsets.all(10), + child: Column( + children: [ + Align( + alignment: Alignment.topLeft, + child: RichText( + text: TextSpan( + style: furmanTextStyle(TextStyle( + color: Colors.grey[800], + fontWeight: FontWeight.bold, + fontSize: 12, + )), + children: [ + WidgetSpan( + alignment: PlaceholderAlignment.middle, + child: Padding( + padding: const EdgeInsets.only(right: 4), + child: Container( + width: 9, + height: 9, + decoration: BoxDecoration( + color: widget.restaurant.isOpen ? Colors.green : Colors.red.shade700, + shape: BoxShape.circle, + ), + ), + ), + ), + TextSpan(text: widget.restaurant.isOpen ? "Open" : "Closed"), + ], + ), + ), + ), + const SizedBox(height: 10), + ClipRRect( + borderRadius: const BorderRadius.all(Radius.circular(5)), + child: Image.network(widget.restaurant.imageUri, height: 90), + ), + Expanded( + child: Column( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: [ + Text( + widget.restaurant.name, + textAlign: TextAlign.center, + style: furmanTextStyle(TextStyle( + color: Colors.grey[800], + fontSize: 14, + fontWeight: FontWeight.w600, + )), + ), + ], + ), + ), + ], + ), + ), + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/home/restaurants/restaurants_list.dart b/lib/src/widgets/home/restaurants/restaurants_list.dart new file mode 100644 index 0000000..fd71173 --- /dev/null +++ b/lib/src/widgets/home/restaurants/restaurants_list.dart @@ -0,0 +1,63 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/services/restaurants/restaurant_service.dart'; + +import 'restaurant_card.dart'; + +class RestaurantsList extends StatefulWidget { + const RestaurantsList({Key? key}) : super(key: key); + + @override + State createState() => _RestaurantsListState(); +} + +class _RestaurantsListState extends State { + late Future> futureEventList; + + @override + void initState() { + super.initState(); + futureEventList = RestaurantService.fetchRestaurants(); + } + + @override + Widget build(BuildContext context) { + return FutureBuilder>( + future: futureEventList, + builder: (context, snapshot) { + if (snapshot.hasData) { + var restaurants = snapshot.data!..sort((r1, r2) => (r1.isOpen ? 0 : 1) - (r2.isOpen ? 0 : 1)); + return SizedBox( + height: 175, + child: ListView.builder( + padding: const EdgeInsets.only(left: 20), + itemCount: restaurants.length, + cacheExtent: 10000, + scrollDirection: Axis.horizontal, + prototypeItem: Padding( + padding: const EdgeInsets.only(right: 15), + child: RestaurantCard(restaurant: restaurants.first), + ), + itemBuilder: (context, index) => Padding( + padding: const EdgeInsets.only(right: 15), + child: RestaurantCard(restaurant: restaurants[index]), + ), + ), + ); + } else if (snapshot.hasError) { + return Padding( + padding: const EdgeInsets.symmetric(horizontal: 20), + child: Text('${snapshot.error}', style: const TextStyle(color: Colors.red)) + ); + } + + // By default, show a loading spinner. + return const Center( + child: Padding( + padding: EdgeInsets.symmetric(vertical: 25), + child: CircularProgressIndicator() + ), + ); + }, + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/home/transportation/transportation_card.dart b/lib/src/widgets/home/transportation/transportation_card.dart new file mode 100644 index 0000000..996f23e --- /dev/null +++ b/lib/src/widgets/home/transportation/transportation_card.dart @@ -0,0 +1,78 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/utils/theme.dart'; + +class TransportationCard extends StatelessWidget { + const TransportationCard({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return Container( + decoration: const BoxDecoration( + color: Color(0xfff9f9fb), + borderRadius: BorderRadius.all(Radius.circular(10)) + ), + child: IntrinsicHeight( + child: Row( + children: [ + SizedBox( + width: 75, + child: Icon(Icons.directions_bus, size: 50, color: Colors.grey[800]), + ), + Padding( + padding: const EdgeInsets.symmetric(vertical: 15), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + RichText( + text: TextSpan( + style: furmanTextStyle(TextStyle( + color: Colors.grey[800], + fontWeight: FontWeight.bold, + fontSize: 12, + )), + children: [ + WidgetSpan( + alignment: PlaceholderAlignment.middle, + child: Padding( + padding: const EdgeInsets.only(right: 4), + child: Container( + width: 9, + height: 9, + decoration: const BoxDecoration( + color: Colors.green, + shape: BoxShape.circle, + ), + ), + ), + ), + const TextSpan(text: "Running"), + ], + ), + ), + const SizedBox(height: 2), + Text( + "503 Bus", + style: furmanTextStyle(TextStyle( + fontWeight: FontWeight.bold, + color: Colors.grey[800], + fontSize: 18, + )), + ), + Text( + "Next stop: Pointsett Hwy & Crestwood Dr", + style: furmanTextStyle(TextStyle( + fontWeight: FontWeight.w500, + color: Colors.grey[500], + fontSize: 12, + )), + ), + ], + ), + ), + ], + ), + ), + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/info/info_card.dart b/lib/src/widgets/info/info_card.dart new file mode 100644 index 0000000..f8cb714 --- /dev/null +++ b/lib/src/widgets/info/info_card.dart @@ -0,0 +1,46 @@ +import 'package:flutter/material.dart'; + +class InfoCard extends StatelessWidget { + final Color color; + final IconData icon; + final String title; + final String description; + + const InfoCard({ + required this.color, + required this.icon, + required this.title, + required this.description, + Key? key + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Container( + decoration: BoxDecoration( + color: color, + borderRadius: BorderRadius.circular(10), + ), + child: Row( + children: [ + Padding( + padding: const EdgeInsets.only(left: 15, right: 5), + child: Icon(icon, size: 40,) + ), + Flexible( + child: Container( + padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 10), + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text(title, style: Theme.of(context).textTheme.titleLarge,), + Text(description), + ] + ), + ), + ) + ], + ), + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/map/filter_chip.dart b/lib/src/widgets/map/filter_chip.dart new file mode 100644 index 0000000..9cbb62f --- /dev/null +++ b/lib/src/widgets/map/filter_chip.dart @@ -0,0 +1,55 @@ +import 'package:flutter/material.dart'; +import 'package:furman_now/src/utils/theme.dart'; + +class MapFilterChip extends StatelessWidget { + final IconData icon; + final String text; + + const MapFilterChip({ + required this.icon, + required this.text, + Key? key + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Container( + padding: const EdgeInsets.only( + top: 6, bottom: 6, left: 8, right: 12), + decoration: BoxDecoration( + color: Colors.white, + borderRadius: BorderRadius.circular(100), + boxShadow: const [ + BoxShadow( + color: Color(0x33000000), + blurRadius: 4, + ), + ], + ), + child: RichText( + text: TextSpan( + children: [ + WidgetSpan( + child: Icon(icon, + size: 18, + color: Colors.grey.shade800), + alignment: PlaceholderAlignment.middle, + ), + const WidgetSpan(child: SizedBox(width: 6)), + WidgetSpan( + alignment: PlaceholderAlignment.middle, + child: Text( + text, + style: furmanTextStyle(TextStyle( + fontSize: 14, + fontWeight: FontWeight.w600, + color: Colors.grey.shade800, + )), + ), + ), + ], + ), + ), + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/map/rotate_compass.dart b/lib/src/widgets/map/rotate_compass.dart new file mode 100644 index 0000000..1e4e8be --- /dev/null +++ b/lib/src/widgets/map/rotate_compass.dart @@ -0,0 +1,37 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_svg/flutter_svg.dart'; + +class MapRotateCompass extends StatelessWidget { + final double rotation; + final void Function()? resetRotation; + + @override + const MapRotateCompass({ + required this.rotation, + required this.resetRotation, + Key? key + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return AnimatedOpacity( + opacity: rotation != 0.0 ? 1 : 0, + duration: const Duration(milliseconds: 200), + child: Align( + alignment: Alignment.topRight, + child: Padding( + padding: const EdgeInsets.only(top: 4, right: 12), + child: FloatingActionButton( + backgroundColor: Colors.white, + mini: true, + onPressed: resetRotation, + child: Transform.rotate( + angle: rotation, + child: SvgPicture.asset("assets/images/compass.svg", height: 28), + ), + ), + ), + ), + ); + } +} \ No newline at end of file diff --git a/lib/src/widgets/scroll_view_height.dart b/lib/src/widgets/scroll_view_height.dart new file mode 100644 index 0000000..6619ee7 --- /dev/null +++ b/lib/src/widgets/scroll_view_height.dart @@ -0,0 +1,22 @@ +import 'package:flutter/material.dart'; + +class ScrollViewWithHeight extends StatelessWidget { + final Widget child; + + const ScrollViewWithHeight({ + required this.child, + Key? key, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return LayoutBuilder(builder: (BuildContext context, BoxConstraints constraints) { + return SingleChildScrollView( + child: ConstrainedBox( + constraints: constraints.copyWith(minHeight: constraints.maxHeight, maxHeight: double.infinity), + child: child, + ), + ); + }); + } +} \ No newline at end of file diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..f6aab83 --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,672 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + _fe_analyzer_shared: + dependency: transitive + description: + name: _fe_analyzer_shared + url: "https://pub.dartlang.org" + source: hosted + version: "46.0.0" + analyzer: + dependency: transitive + description: + name: analyzer + url: "https://pub.dartlang.org" + source: hosted + version: "4.6.0" + args: + dependency: transitive + description: + name: args + url: "https://pub.dartlang.org" + source: hosted + version: "2.3.1" + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.8.2" + auto_route: + dependency: "direct main" + description: + name: auto_route + url: "https://pub.dartlang.org" + source: hosted + version: "5.0.1" + barcode: + dependency: transitive + description: + name: barcode + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.3" + barcode_widget: + dependency: "direct main" + description: + name: barcode_widget + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.3" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + characters: + dependency: transitive + description: + name: characters + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.1" + clock: + dependency: transitive + description: + name: clock + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.16.0" + convert: + dependency: "direct main" + description: + name: convert + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.2" + coverage: + dependency: transitive + description: + name: coverage + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.2" + crypto: + dependency: "direct main" + description: + name: crypto + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.2" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.5" + english_words: + dependency: "direct main" + description: + name: english_words + url: "https://pub.dartlang.org" + source: hosted + version: "4.0.0" + fake_async: + dependency: transitive + description: + name: fake_async + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + ffi: + dependency: transitive + description: + name: ffi + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.1" + file: + dependency: transitive + description: + name: file + url: "https://pub.dartlang.org" + source: hosted + version: "6.1.4" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.1" + flutter_map: + dependency: "direct main" + description: + name: flutter_map + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.0" + flutter_svg: + dependency: "direct main" + description: + name: flutter_svg + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.4" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + frontend_server_client: + dependency: transitive + description: + name: frontend_server_client + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.3" + glob: + dependency: transitive + description: + name: glob + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + google_fonts: + dependency: "direct main" + description: + name: google_fonts + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + http: + dependency: "direct main" + description: + name: http + url: "https://pub.dartlang.org" + source: hosted + version: "0.13.5" + http_multi_server: + dependency: transitive + description: + name: http_multi_server + url: "https://pub.dartlang.org" + source: hosted + version: "3.2.1" + http_parser: + dependency: transitive + description: + name: http_parser + url: "https://pub.dartlang.org" + source: hosted + version: "4.0.1" + intl: + dependency: "direct main" + description: + name: intl + url: "https://pub.dartlang.org" + source: hosted + version: "0.17.0" + io: + dependency: transitive + description: + name: io + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.3" + js: + dependency: transitive + description: + name: js + url: "https://pub.dartlang.org" + source: hosted + version: "0.6.4" + latlong2: + dependency: "direct main" + description: + name: latlong2 + url: "https://pub.dartlang.org" + source: hosted + version: "0.8.1" + lints: + dependency: transitive + description: + name: lints + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + lists: + dependency: transitive + description: + name: lists + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + logging: + dependency: transitive + description: + name: logging + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.11" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.4" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.7.0" + mgrs_dart: + dependency: transitive + description: + name: mgrs_dart + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + mime: + dependency: transitive + description: + name: mime + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" + navbar_router: + dependency: "direct main" + description: + name: navbar_router + url: "https://pub.dartlang.org" + source: hosted + version: "0.3.2" + node_preamble: + dependency: transitive + description: + name: node_preamble + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.1" + package_config: + dependency: transitive + description: + name: package_config + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + palette_generator: + dependency: "direct main" + description: + name: palette_generator + url: "https://pub.dartlang.org" + source: hosted + version: "0.3.3+2" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.1" + path_drawing: + dependency: transitive + description: + name: path_drawing + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + path_parsing: + dependency: transitive + description: + name: path_parsing + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + path_provider: + dependency: transitive + description: + name: path_provider + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.11" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.19" + path_provider_ios: + dependency: transitive + description: + name: path_provider_ios + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.11" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.7" + path_provider_macos: + dependency: transitive + description: + name: path_provider_macos + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.6" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.4" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.2" + petitparser: + dependency: transitive + description: + name: petitparser + url: "https://pub.dartlang.org" + source: hosted + version: "5.0.0" + platform: + dependency: transitive + description: + name: platform + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.0" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.2" + polylabel: + dependency: transitive + description: + name: polylabel + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + pool: + dependency: transitive + description: + name: pool + url: "https://pub.dartlang.org" + source: hosted + version: "1.5.1" + positioned_tap_detector_2: + dependency: transitive + description: + name: positioned_tap_detector_2 + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" + process: + dependency: transitive + description: + name: process + url: "https://pub.dartlang.org" + source: hosted + version: "4.2.4" + proj4dart: + dependency: transitive + description: + name: proj4dart + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + pub_semver: + dependency: transitive + description: + name: pub_semver + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" + qr: + dependency: transitive + description: + name: qr + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + quiver: + dependency: transitive + description: + name: quiver + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.0" + shelf: + dependency: transitive + description: + name: shelf + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.2" + shelf_packages_handler: + dependency: transitive + description: + name: shelf_packages_handler + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + shelf_static: + dependency: transitive + description: + name: shelf_static + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.1" + shelf_web_socket: + dependency: transitive + description: + name: shelf_web_socket + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_map_stack_trace: + dependency: transitive + description: + name: source_map_stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + source_maps: + dependency: transitive + description: + name: source_maps + url: "https://pub.dartlang.org" + source: hosted + version: "0.10.10" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.2" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.10.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + test: + dependency: "direct main" + description: + name: test + url: "https://pub.dartlang.org" + source: hosted + version: "1.21.1" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.4.9" + test_core: + dependency: transitive + description: + name: test_core + url: "https://pub.dartlang.org" + source: hosted + version: "0.4.13" + tuple: + dependency: transitive + description: + name: tuple + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.1" + unicode: + dependency: transitive + description: + name: unicode + url: "https://pub.dartlang.org" + source: hosted + version: "0.3.1" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.2" + vm_service: + dependency: transitive + description: + name: vm_service + url: "https://pub.dartlang.org" + source: hosted + version: "8.3.0" + watcher: + dependency: transitive + description: + name: watcher + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + web_socket_channel: + dependency: transitive + description: + name: web_socket_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.2.0" + webkit_inspection_protocol: + dependency: transitive + description: + name: webkit_inspection_protocol + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + win32: + dependency: transitive + description: + name: win32 + url: "https://pub.dartlang.org" + source: hosted + version: "2.7.0" + wkt_parser: + dependency: transitive + description: + name: wkt_parser + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.0+1" + xml: + dependency: transitive + description: + name: xml + url: "https://pub.dartlang.org" + source: hosted + version: "6.1.0" + yaml: + dependency: transitive + description: + name: yaml + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.1" +sdks: + dart: ">=2.17.6 <3.0.0" + flutter: ">=3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..ee7aef3 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,103 @@ +name: furman_now +description: A new Flutter project. + +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +version: 1.0.0+1 + +environment: + sdk: ">=2.17.6 <3.0.0" + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.2 + english_words: ^4.0.0 + navbar_router: ^0.3.2 + intl: ^0.17.0 + google_fonts: ^3.0.1 + http: ^0.13.5 + convert: ^3.0.2 + crypto: ^3.0.2 + test: ^1.21.1 + barcode_widget: ^2.0.3 + flutter_map: ^2.2.0 + latlong2: ^0.8.1 + palette_generator: ^0.3.3+2 + flutter_svg: ^1.1.4 + auto_route: ^5.0.1 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^2.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter packages. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + assets: + - assets/images/ + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/test/service_tests/get_app/barcode_test.dart b/test/service_tests/get_app/barcode_test.dart new file mode 100644 index 0000000..030f962 --- /dev/null +++ b/test/service_tests/get_app/barcode_test.dart @@ -0,0 +1,7 @@ +import "package:test/test.dart"; + +void main() { + test("Ensure generated barcode is correct", () { + + }); +} \ No newline at end of file diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..65dc18b --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:furman_now/src/app.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const App()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..8aaa46ac1ae21512746f852a42ba87e4165dfdd1 GIT binary patch literal 917 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|I14-?iy0X7 zltGxWVyS%@P(fs7NJL45ua8x7ey(0(N`6wRUPW#JP&EUCO@$SZnVVXYs8ErclUHn2 zVXFjIVFhG^g!Ppaz)DK8ZIvQ?0~DO|i&7O#^-S~(l1AfjnEK zjFOT9D}DX)@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7USFmqf|i<65o z3raHc^AtelCMM;Vme?vOfh>Xph&xL%(-1c06+^uR^q@XSM&D4+Kp$>4P^%3{)XKjo zGZknv$b36P8?Z_gF{nK@`XI}Z90TzwSQO}0J1!f2c(B=V`5aP@1P1a|PZ!4!3&Gl8 zTYqUsf!gYFyJnXpu0!n&N*SYAX-%d(5gVjrHJWqXQshj@!Zm{!01WsQrH~9=kTxW#6SvuapgMqt>$=j#%eyGrQzr zP{L-3gsMA^$I1&gsBAEL+vxi1*Igl=8#8`5?A-T5=z-sk46WA1IUT)AIZHx1rdUrf zVJrJn<74DDw`j)Ki#gt}mIT-Q`XRa2-jQXQoI%w`nb|XblvzK${ZzlV)m-XcwC(od z71_OEC5Bt9GEXosOXaPTYOia#R4ID2TiU~`zVMl08TV_C%DnU4^+HE>9(CE4D6?Fz oujB08i7adh9xk7*FX66dWH6F5TM;?E2b5PlUHx3vIVCg!0Dx9vYXATM literal 0 HcmV?d00001 diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000000000000000000000000000000000000..b749bfef07473333cf1dd31e9eed89862a5d52aa GIT binary patch literal 5292 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 literal 0 HcmV?d00001 diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000000000000000000000000000000000000..88cfd48dff1169879ba46840804b412fe02fefd6 GIT binary patch literal 8252 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 literal 0 HcmV?d00001 diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000000000000000000000000000000000000..eb9b4d76e525556d5d89141648c724331630325d GIT binary patch literal 5594 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 X>c!)3PgKfL&lX^$Z>Cpu&6)6jvi^Z! literal 0 HcmV?d00001 diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000000000000000000000000000000000000..d69c56691fbdb0b7efa65097c7cc1edac12a6d3e GIT binary patch literal 20998 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 MPgg&ebxsLQ025IeI{*Lx literal 0 HcmV?d00001 diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..e60a5b7 --- /dev/null +++ b/web/index.html @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + furman_now + + + + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..8344ce0 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "furman_now", + "short_name": "furman_now", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +}