From 9d1967a9f0de9b1c112648ed4dbbd17fbb834a12 Mon Sep 17 00:00:00 2001 From: Thomas Atkins Date: Fri, 8 Feb 2019 23:41:49 -0600 Subject: [PATCH] Using the codelab for firebase and flutter, added connectivity to the firestore database --- .idea/misc.xml | 11 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 108 ++++ flutter-app.iml | 12 + flutter_app/.gitignore | 71 +++ flutter_app/.metadata | 10 + flutter_app/README.md | 16 + flutter_app/android/app/build.gradle | 63 +++ .../android/app/src/main/AndroidManifest.xml | 39 ++ .../waitnomore/flutterapp/MainActivity.java | 13 + .../main/res/drawable/launch_background.xml | 12 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes .../app/src/main/res/values/styles.xml | 8 + flutter_app/android/build.gradle | 30 ++ flutter_app/android/google-services.json | 42 ++ flutter_app/android/gradle.properties | 1 + .../gradle/wrapper/gradle-wrapper.properties | 6 + flutter_app/android/settings.gradle | 15 + .../ios/Flutter/AppFrameworkInfo.plist | 26 + flutter_app/ios/Flutter/Debug.xcconfig | 1 + flutter_app/ios/Flutter/Release.xcconfig | 1 + .../ios/Runner.xcodeproj/project.pbxproj | 510 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/xcschemes/Runner.xcscheme | 93 ++++ .../contents.xcworkspacedata | 7 + flutter_app/ios/Runner/AppDelegate.h | 6 + flutter_app/ios/Runner/AppDelegate.m | 13 + .../AppIcon.appiconset/Contents.json | 122 +++++ .../Icon-App-1024x1024@1x.png | Bin 0 -> 11112 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 + .../Runner/Base.lproj/LaunchScreen.storyboard | 37 ++ .../ios/Runner/Base.lproj/Main.storyboard | 26 + flutter_app/ios/Runner/Info.plist | 45 ++ flutter_app/ios/Runner/main.m | 9 + flutter_app/lib/main.dart | 93 ++++ flutter_app/pubspec.yaml | 69 +++ flutter_app/test/widget_test.dart | 30 ++ 60 files changed, 1594 insertions(+) create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 flutter-app.iml create mode 100644 flutter_app/.gitignore create mode 100644 flutter_app/.metadata create mode 100644 flutter_app/README.md create mode 100644 flutter_app/android/app/build.gradle create mode 100644 flutter_app/android/app/src/main/AndroidManifest.xml create mode 100644 flutter_app/android/app/src/main/java/com/glmdev/waitnomore/flutterapp/MainActivity.java create mode 100644 flutter_app/android/app/src/main/res/drawable/launch_background.xml create mode 100644 flutter_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 flutter_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 flutter_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 flutter_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 flutter_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 flutter_app/android/app/src/main/res/values/styles.xml create mode 100644 flutter_app/android/build.gradle create mode 100644 flutter_app/android/google-services.json create mode 100644 flutter_app/android/gradle.properties create mode 100644 flutter_app/android/gradle/wrapper/gradle-wrapper.properties create mode 100644 flutter_app/android/settings.gradle create mode 100644 flutter_app/ios/Flutter/AppFrameworkInfo.plist create mode 100644 flutter_app/ios/Flutter/Debug.xcconfig create mode 100644 flutter_app/ios/Flutter/Release.xcconfig create mode 100644 flutter_app/ios/Runner.xcodeproj/project.pbxproj create mode 100644 flutter_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 flutter_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 flutter_app/ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 flutter_app/ios/Runner/AppDelegate.h create mode 100644 flutter_app/ios/Runner/AppDelegate.m create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 flutter_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 flutter_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 flutter_app/ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 flutter_app/ios/Runner/Base.lproj/Main.storyboard create mode 100644 flutter_app/ios/Runner/Info.plist create mode 100644 flutter_app/ios/Runner/main.m create mode 100644 flutter_app/lib/main.dart create mode 100644 flutter_app/pubspec.yaml create mode 100644 flutter_app/test/widget_test.dart diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..51300e5 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..fff6f39 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..a4d8152 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +