├── .circleci ├── ci-scripts │ └── ci-mock-google-services-setup.sh └── config.yml ├── .github ├── ISSUE_TEMPLATE.md └── pull_request_template.md ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml └── vcs.xml ├── LICENSE ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── io │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ └── net │ │ │ └── squanchy │ │ │ └── MainActivity.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── assets ├── 2.0x │ ├── ic_favourites_selected.png │ ├── ic_favourites_unselected.png │ ├── ic_schedule.png │ ├── ic_schedule_selected.png │ ├── ic_schedule_unselected.png │ ├── ic_search.png │ ├── ic_settings.png │ ├── ic_venue_selected.png │ ├── ic_venue_unselected.png │ └── nothing_here.png ├── 3.0x │ ├── ic_favourites_selected.png │ ├── ic_favourites_unselected.png │ ├── ic_schedule.png │ ├── ic_schedule_selected.png │ ├── ic_schedule_unselected.png │ ├── ic_search.png │ ├── ic_settings.png │ ├── ic_venue_selected.png │ ├── ic_venue_unselected.png │ └── nothing_here.png ├── ic_favourites_selected.png ├── ic_favourites_unselected.png ├── ic_schedule.png ├── ic_schedule_selected.png ├── ic_schedule_unselected.png ├── ic_search.png ├── ic_settings.png ├── ic_venue_selected.png ├── ic_venue_unselected.png └── nothing_here.png ├── fonts ├── LeagueSpartan-Bold.otf ├── Quicksand-Bold.ttf ├── Quicksand-Light.ttf ├── Quicksand-Medium.ttf └── Quicksand-Regular.ttf ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── flutter_assets │ │ ├── AssetManifest.json │ │ ├── FontManifest.json │ │ ├── LICENSE │ │ ├── assets │ │ ├── 2.0x │ │ │ ├── ic_favourites_selected.png │ │ │ ├── ic_favourites_unselected.png │ │ │ ├── ic_schedule.png │ │ │ ├── ic_schedule_selected.png │ │ │ ├── ic_schedule_unselected.png │ │ │ ├── ic_search.png │ │ │ ├── ic_settings.png │ │ │ ├── ic_venue_selected.png │ │ │ ├── ic_venue_unselected.png │ │ │ └── nothing_here.png │ │ ├── 3.0x │ │ │ ├── ic_favourites_selected.png │ │ │ ├── ic_favourites_unselected.png │ │ │ ├── ic_schedule.png │ │ │ ├── ic_schedule_selected.png │ │ │ ├── ic_schedule_unselected.png │ │ │ ├── ic_search.png │ │ │ ├── ic_settings.png │ │ │ ├── ic_venue_selected.png │ │ │ ├── ic_venue_unselected.png │ │ │ └── nothing_here.png │ │ ├── ic_favourites_selected.png │ │ ├── ic_favourites_unselected.png │ │ ├── ic_schedule.png │ │ ├── ic_schedule_selected.png │ │ ├── ic_schedule_unselected.png │ │ ├── ic_search.png │ │ ├── ic_settings.png │ │ ├── ic_venue_selected.png │ │ ├── ic_venue_unselected.png │ │ └── nothing_here.png │ │ ├── fonts │ │ ├── LeagueSpartan-Bold.otf │ │ ├── MaterialIcons-Regular.ttf │ │ ├── Quicksand-Bold.ttf │ │ ├── Quicksand-Light.ttf │ │ ├── Quicksand-Medium.ttf │ │ └── Quicksand-Regular.ttf │ │ ├── kernel_blob.bin │ │ └── platform.dill ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GeneratedPluginRegistrant.h │ ├── GeneratedPluginRegistrant.m │ ├── Info.plist │ └── main.m ├── lib ├── eventdetails │ ├── event.dart │ └── eventdetails.dart ├── favourites │ └── favourites.dart ├── main.dart ├── models │ └── EventModels.dart ├── rootview.dart ├── schedule │ ├── schedule.dart │ └── schedule_item.dart ├── squanchy_app.dart ├── utils │ ├── DataService.dart │ ├── button_widgets.dart │ ├── flexible_app_bar_widget.dart │ └── offscreen_widget_tree.dart └── venue │ └── venuedetails.dart └── pubspec.yaml /.circleci/ci-scripts/ci-mock-google-services-setup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | export ANDROID_APP_MODULE_PATH="android/app" 4 | export ANDROID_JSON_PATH="$ANDROID_APP_MODULE_PATH/google-services.json" 5 | 6 | export IOS_APP_MODULE_PATH="ios/Runner" 7 | export IOS_PLIST_PATH="$IOS_APP_MODULE_PATH/GoogleService-Info.plist" 8 | 9 | if [ ! -e ${ANDROID_JSON_PATH} ]; then 10 | echo "Writing mock google-services.json file to $ANDROID_JSON_PATH..." 11 | 12 | echo '{ 13 | "project_info": { 14 | "project_number": "012345678912", 15 | "firebase_url": "https://squanchy-dev.firebaseio.com", 16 | "project_id": "squanchy-dev", 17 | "storage_bucket": "squanchy-dev.appspot.com" 18 | }, 19 | "client": [ 20 | { 21 | "client_info": { 22 | "mobilesdk_app_id": "1:012345678912:android:1337deadbeef", 23 | "android_client_info": { 24 | "package_name": "net.squanchy.develop.flutter" 25 | } 26 | }, 27 | "oauth_client": [ 28 | { 29 | "client_id": "XXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.apps.googleusercontent.com", 30 | "client_type": 1, 31 | "android_info": { 32 | "package_name": "net.squanchy.develop.flutter", 33 | "certificate_hash": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 34 | } 35 | }, 36 | { 37 | "client_id": "XXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.apps.googleusercontent.com", 38 | "client_type": 1, 39 | "android_info": { 40 | "package_name": "net.squanchy.develop.flutter", 41 | "certificate_hash": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 42 | } 43 | }, 44 | { 45 | "client_id": "XXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.apps.googleusercontent.com", 46 | "client_type": 3 47 | }, 48 | { 49 | "client_id": "XXXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.apps.googleusercontent.com", 50 | "client_type": 3 51 | } 52 | ], 53 | "api_key": [ 54 | { 55 | "current_key": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" 56 | } 57 | ], 58 | "services": { 59 | "appinvite_service": { 60 | "status": 1, 61 | "other_platform_oauth_client": [] 62 | }, 63 | "ads_service": { 64 | "status": 2 65 | } 66 | } 67 | } 68 | ], 69 | "configuration_version": "1" 70 | }' > ${ANDROID_JSON_PATH} 71 | 72 | echo "Done." 73 | else 74 | echo "The $ANDROID_JSON_PATH file already exists, skipping..." 75 | fi 76 | 77 | if [ ! -e ${IOS_PLIST_PATH} ]; then 78 | echo "Writing mock GoogleService-Info.plist file to $IOS_PLIST_PATH..." 79 | 80 | echo ' 81 | 82 | 83 | 84 | AD_UNIT_ID_FOR_BANNER_TEST 85 | ca-app-pub-0123456789123456/0123456789 86 | AD_UNIT_ID_FOR_INTERSTITIAL_TEST 87 | ca-app-pub-0123456789123456/0123456789 88 | CLIENT_ID 89 | 012345678912-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.apps.googleusercontent.com 90 | REVERSED_CLIENT_ID 91 | com.googleusercontent.apps.012345678912-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX 92 | API_KEY 93 | XXXXXXXXXXXXXXXXXXXXXXX_X_XXXXXXXXXXXXX 94 | GCM_SENDER_ID 95 | 012345678912 96 | PLIST_VERSION 97 | 1 98 | BUNDLE_ID 99 | net.squanchy.develop 100 | PROJECT_ID 101 | squanchy-dev 102 | STORAGE_BUCKET 103 | squanchy-dev.appspot.com 104 | IS_ADS_ENABLED 105 | 106 | IS_ANALYTICS_ENABLED 107 | 108 | IS_APPINVITE_ENABLED 109 | 110 | IS_GCM_ENABLED 111 | 112 | IS_SIGNIN_ENABLED 113 | 114 | GOOGLE_APP_ID 115 | 1:012345678912:ios:XXXXXXXXXXXXXXXX 116 | DATABASE_URL 117 | https://squanchy-dev.firebaseio.com 118 | 119 | 120 | ' > ${IOS_PLIST_PATH} 121 | 122 | echo "Done." 123 | else 124 | echo "The $IOS_PLIST_PATH file already exists, skipping..." 125 | fi 126 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | jobs: 4 | "flutter build": 5 | working_directory: ~/squanchy-android 6 | 7 | docker: 8 | - image: cirrusci/flutter 9 | 10 | environment: 11 | ANDROID_HOME: /opt/android/sdk 12 | APPLICATION_ID: net.squanchy.example 13 | 14 | steps: 15 | - checkout 16 | 17 | - run: 18 | name: Create mock Play Services JSON & PList files 19 | command: .circleci/ci-scripts/ci-mock-google-services-setup.sh 20 | 21 | # Run Flutter Doctor 22 | - run: 23 | name: Flutter Doctor 24 | command: flutter doctor 25 | 26 | # Get all packages then run Flutter build 27 | - run: 28 | name: Get Pub packages 29 | command: flutter packages get 30 | - run: 31 | name: Build Android APK (release) 32 | command: flutter build apk -v 33 | 34 | "flutter analyze": 35 | working_directory: ~/squanchy-android 36 | 37 | docker: 38 | - image: cirrusci/flutter 39 | 40 | environment: 41 | ANDROID_HOME: /opt/android/sdk 42 | APPLICATION_ID: net.squanchy.example 43 | 44 | steps: 45 | - checkout 46 | 47 | # Run Flutter Doctor 48 | - run: 49 | name: Flutter Doctor 50 | command: flutter doctor 51 | 52 | # Get all packages then run Flutter Analyzer 53 | - run: 54 | name: Get Pub packages 55 | command: flutter packages get 56 | - run: 57 | name: Flutter Analyzer 58 | command: flutter analyze 59 | 60 | workflows: 61 | version: 2 62 | build_and_analyze: 63 | jobs: 64 | - "flutter build" 65 | - "flutter analyze" 66 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Thanks for using Squanchy. Before you create an issue, please consider the following points: 2 | 3 | - [ ] If you think you found a bug, please include thorough instructions to reproduce the problem 4 | A stack trace alone is ok but may not contain enough context for us to address the issue 5 | - [ ] Please include the app version number, including the minor and patch version, in the issue text 6 | - [ ] Please include the OS version number, including the minor version, in the issue text 7 | - [ ] Attach any screenshots and/or screen recordings that are necessary to diagnose the issue 8 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Problem 2 | 3 | _Explain what is requested to do, or the problem you had to fix_ 4 | 5 | ## Solution 6 | 7 | _Explain high level how have you implemented the task, add any quirks or interesting information_ 8 | 9 | ### Test(s) added 10 | 11 | _Explain what you did test and what you didn't, and why_ 12 | 13 | ### Screenshots 14 | 15 | Before | After 16 | --- | --- 17 | gif/png _before_ | gif/png _after_ 18 | 19 | ### Paired with 20 | 21 | _Specify @github-handle @or-handles, or write "Nobody" if you did not pair_ 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # IDEA/Android Studio ignores 4 | *.iml 5 | *.ipr 6 | *.iws 7 | /.idea/* 8 | 9 | # IDEA/Android Studio Ignore exceptions 10 | !/.idea/vcs.xml 11 | !/.idea/fileTemplates/ 12 | !/.idea/inspectionProfiles/ 13 | !/.idea/scopes/ 14 | !/.idea/codeStyles/ 15 | !/.idea/.name 16 | !/.idea/encodings.xml 17 | !/.idea/copyright/ 18 | !/.idea/compiler.xml 19 | 20 | .packages 21 | packages 22 | 23 | .atom/ 24 | .pub/ 25 | pubspec.lock 26 | 27 | build/ 28 | 29 | ios/.generated/ 30 | .flutter-plugins 31 | 32 | ## iOS Specific 33 | 34 | ## Build generated 35 | build/ 36 | DerivedData 37 | build.xcarchive 38 | 39 | ## Various settings 40 | *.pbxuser 41 | !default.pbxuser 42 | *.mode1v3 43 | !default.mode1v3 44 | *.mode2v3 45 | !default.mode2v3 46 | *.perspectivev3 47 | !default.perspectivev3 48 | xcuserdata 49 | 50 | ## Other 51 | *.xccheckout 52 | *.moved-aside 53 | *.xcuserstate 54 | *.xcscmblueprint 55 | 56 | ## Obj-C/Swift specific 57 | *.hmap 58 | *.ipa 59 | 60 | # CocoaPods 61 | Pods/ 62 | 63 | ios/Runner/GoogleService-Info.plist 64 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 254 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 119 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Squanchy Flutter [ARCHIVED] 2 | [![Apache 2 license](https://img.shields.io/github/license/squanchy-dev/squanchy-flutter.svg?style=for-the-badge)](https://github.com/squanchy-dev/squanchy-flutter/blob/master/LICENSE) 3 | 4 | **Note:** this project has been archived an put in read-only mode. No further features nor fixes are coming. If you're interested in taking over as maintainer please get in touch [on Twitter](https://twitter.com/seebrock3r). 5 | 6 | Squanchy is an open source schedule platform for conferences. 7 | 8 | This repository contains the Flutter port of the [Squanchy Android](https://github.com/squanchy-dev/squanchy-android) app. 9 | 10 | The project is maintained by independent contributors. 11 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | 19 | # Local configuration file (sdk path, etc) 20 | local.properties 21 | 22 | # Log Files 23 | *.log 24 | 25 | # Heap dump captures 26 | captures/ 27 | 28 | # App secrets are ignored 29 | google-services.json 30 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | def localProperties = new Properties() 2 | def localPropertiesFile = rootProject.file('local.properties') 3 | if (localPropertiesFile.exists()) { 4 | localPropertiesFile.withInputStream { stream -> 5 | localProperties.load(stream) 6 | } 7 | } 8 | 9 | def flutterRoot = localProperties.getProperty('flutter.sdk') 10 | if (flutterRoot == null) { 11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") 12 | } 13 | 14 | apply plugin: 'com.android.application' 15 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" 16 | 17 | android { 18 | compileSdkVersion 28 19 | buildToolsVersion '27.0.3' 20 | 21 | defaultConfig { 22 | applicationId 'net.squanchy.develop.flutter' 23 | 24 | minSdkVersion 16 25 | targetSdkVersion 28 26 | multiDexEnabled true 27 | } 28 | 29 | lintOptions { 30 | disable 'InvalidPackage' 31 | } 32 | 33 | buildTypes { 34 | release { 35 | // TODO: Add your own signing config for the release build. 36 | // Signing with the debug keys for now, so `flutter run --release` works. 37 | signingConfig signingConfigs.debug 38 | } 39 | } 40 | } 41 | 42 | flutter { 43 | source '../..' 44 | } 45 | 46 | dependencies { 47 | implementation 'com.google.firebase:firebase-firestore:15.0.0' 48 | } 49 | 50 | apply plugin: 'com.google.gms.google-services' 51 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 7 | 8 | 9 | 14 | 18 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- 1 | package io.flutter.plugins; 2 | 3 | import io.flutter.plugin.common.PluginRegistry; 4 | import io.flutter.plugins.firebase.cloudfirestore.CloudFirestorePlugin; 5 | import io.flutter.plugins.firebaseanalytics.FirebaseAnalyticsPlugin; 6 | import io.flutter.plugins.firebaseauth.FirebaseAuthPlugin; 7 | import io.flutter.plugins.firebase.core.FirebaseCorePlugin; 8 | import io.flutter.plugins.googlesignin.GoogleSignInPlugin; 9 | 10 | /** 11 | * Generated file. Do not edit. 12 | */ 13 | public final class GeneratedPluginRegistrant { 14 | public static void registerWith(PluginRegistry registry) { 15 | if (alreadyRegisteredWith(registry)) { 16 | return; 17 | } 18 | CloudFirestorePlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebase.cloudfirestore.CloudFirestorePlugin")); 19 | FirebaseAnalyticsPlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebaseanalytics.FirebaseAnalyticsPlugin")); 20 | FirebaseAuthPlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebaseauth.FirebaseAuthPlugin")); 21 | FirebaseCorePlugin.registerWith(registry.registrarFor("io.flutter.plugins.firebase.core.FirebaseCorePlugin")); 22 | GoogleSignInPlugin.registerWith(registry.registrarFor("io.flutter.plugins.googlesignin.GoogleSignInPlugin")); 23 | } 24 | 25 | private static boolean alreadyRegisteredWith(PluginRegistry registry) { 26 | final String key = GeneratedPluginRegistrant.class.getCanonicalName(); 27 | if (registry.hasPlugin(key)) { 28 | return true; 29 | } 30 | registry.registrarFor(key); 31 | return false; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /android/app/src/main/java/net/squanchy/MainActivity.java: -------------------------------------------------------------------------------- 1 | package net.squanchy.flutter; 2 | 3 | import android.os.Bundle; 4 | import io.flutter.app.FlutterActivity; 5 | 6 | public class MainActivity extends FlutterActivity { 7 | @Override 8 | protected void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | jcenter() 5 | } 6 | 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.1.1' 9 | classpath 'com.google.gms:google-services:3.2.1' 10 | } 11 | } 12 | 13 | allprojects { 14 | repositories { 15 | google() 16 | jcenter() 17 | } 18 | } 19 | 20 | rootProject.buildDir = '../build' 21 | subprojects { 22 | project.buildDir = "${rootProject.buildDir}/${project.name}" 23 | } 24 | 25 | task clean(type: Delete) { 26 | delete rootProject.buildDir 27 | } 28 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.7-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | 3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath() 4 | 5 | def plugins = new Properties() 6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins') 7 | if (pluginsFile.exists()) { 8 | pluginsFile.withInputStream { stream -> plugins.load(stream) } 9 | } 10 | 11 | plugins.each { name, path -> 12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile() 13 | include ":$name" 14 | project(":$name").projectDir = pluginDirectory 15 | } 16 | -------------------------------------------------------------------------------- /assets/2.0x/ic_favourites_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_favourites_selected.png -------------------------------------------------------------------------------- /assets/2.0x/ic_favourites_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_favourites_unselected.png -------------------------------------------------------------------------------- /assets/2.0x/ic_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_schedule.png -------------------------------------------------------------------------------- /assets/2.0x/ic_schedule_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_schedule_selected.png -------------------------------------------------------------------------------- /assets/2.0x/ic_schedule_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_schedule_unselected.png -------------------------------------------------------------------------------- /assets/2.0x/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_search.png -------------------------------------------------------------------------------- /assets/2.0x/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_settings.png -------------------------------------------------------------------------------- /assets/2.0x/ic_venue_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_venue_selected.png -------------------------------------------------------------------------------- /assets/2.0x/ic_venue_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/ic_venue_unselected.png -------------------------------------------------------------------------------- /assets/2.0x/nothing_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/2.0x/nothing_here.png -------------------------------------------------------------------------------- /assets/3.0x/ic_favourites_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_favourites_selected.png -------------------------------------------------------------------------------- /assets/3.0x/ic_favourites_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_favourites_unselected.png -------------------------------------------------------------------------------- /assets/3.0x/ic_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_schedule.png -------------------------------------------------------------------------------- /assets/3.0x/ic_schedule_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_schedule_selected.png -------------------------------------------------------------------------------- /assets/3.0x/ic_schedule_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_schedule_unselected.png -------------------------------------------------------------------------------- /assets/3.0x/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_search.png -------------------------------------------------------------------------------- /assets/3.0x/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_settings.png -------------------------------------------------------------------------------- /assets/3.0x/ic_venue_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_venue_selected.png -------------------------------------------------------------------------------- /assets/3.0x/ic_venue_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/ic_venue_unselected.png -------------------------------------------------------------------------------- /assets/3.0x/nothing_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/3.0x/nothing_here.png -------------------------------------------------------------------------------- /assets/ic_favourites_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_favourites_selected.png -------------------------------------------------------------------------------- /assets/ic_favourites_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_favourites_unselected.png -------------------------------------------------------------------------------- /assets/ic_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_schedule.png -------------------------------------------------------------------------------- /assets/ic_schedule_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_schedule_selected.png -------------------------------------------------------------------------------- /assets/ic_schedule_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_schedule_unselected.png -------------------------------------------------------------------------------- /assets/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_search.png -------------------------------------------------------------------------------- /assets/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_settings.png -------------------------------------------------------------------------------- /assets/ic_venue_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_venue_selected.png -------------------------------------------------------------------------------- /assets/ic_venue_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/ic_venue_unselected.png -------------------------------------------------------------------------------- /assets/nothing_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/assets/nothing_here.png -------------------------------------------------------------------------------- /fonts/LeagueSpartan-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/fonts/LeagueSpartan-Bold.otf -------------------------------------------------------------------------------- /fonts/Quicksand-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/fonts/Quicksand-Bold.ttf -------------------------------------------------------------------------------- /fonts/Quicksand-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/fonts/Quicksand-Light.ttf -------------------------------------------------------------------------------- /fonts/Quicksand-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/fonts/Quicksand-Medium.ttf -------------------------------------------------------------------------------- /fonts/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/fonts/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vagrant/ 3 | .sconsign.dblite 4 | .svn/ 5 | 6 | .DS_Store 7 | *.swp 8 | profile 9 | 10 | DerivedData/ 11 | build/ 12 | 13 | *.pbxuser 14 | *.mode1v3 15 | *.mode2v3 16 | *.perspectivev3 17 | 18 | !default.pbxuser 19 | !default.mode1v3 20 | !default.mode2v3 21 | !default.perspectivev3 22 | 23 | xcuserdata 24 | 25 | *.moved-aside 26 | 27 | *.pyc 28 | *sync/ 29 | Icon? 30 | .tags* 31 | 32 | /Flutter/app.flx 33 | /Flutter/app.zip 34 | /Flutter/App.framework 35 | /Flutter/Flutter.framework 36 | /Flutter/Generated.xcconfig 37 | /ServiceDefinitions.json 38 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | UIRequiredDeviceCapabilities 24 | 25 | arm64 26 | 27 | MinimumOSVersion 28 | 8.0 29 | 30 | 31 | -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 3 | -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/AssetManifest.json: -------------------------------------------------------------------------------- 1 | {"assets/ic_settings.png":["assets/ic_settings.png","assets/2.0x/ic_settings.png","assets/3.0x/ic_settings.png"],"assets/ic_schedule.png":["assets/ic_schedule.png","assets/2.0x/ic_schedule.png","assets/3.0x/ic_schedule.png"],"assets/ic_search.png":["assets/ic_search.png","assets/2.0x/ic_search.png","assets/3.0x/ic_search.png"],"assets/ic_favourites_unselected.png":["assets/ic_favourites_unselected.png","assets/2.0x/ic_favourites_unselected.png","assets/3.0x/ic_favourites_unselected.png"],"assets/ic_schedule_unselected.png":["assets/ic_schedule_unselected.png","assets/2.0x/ic_schedule_unselected.png","assets/3.0x/ic_schedule_unselected.png"],"assets/ic_venue_unselected.png":["assets/ic_venue_unselected.png","assets/2.0x/ic_venue_unselected.png","assets/3.0x/ic_venue_unselected.png"],"assets/ic_schedule_selected.png":["assets/ic_schedule_selected.png","assets/2.0x/ic_schedule_selected.png","assets/3.0x/ic_schedule_selected.png"],"assets/ic_venue_selected.png":["assets/ic_venue_selected.png","assets/2.0x/ic_venue_selected.png","assets/3.0x/ic_venue_selected.png"],"assets/ic_favourites_selected.png":["assets/ic_favourites_selected.png","assets/2.0x/ic_favourites_selected.png","assets/3.0x/ic_favourites_selected.png"],"assets/nothing_here.png":["assets/nothing_here.png","assets/2.0x/nothing_here.png","assets/3.0x/nothing_here.png"],"fonts/LeagueSpartan-Bold.otf":["fonts/LeagueSpartan-Bold.otf"],"fonts/Quicksand-Light.ttf":["fonts/Quicksand-Light.ttf"],"fonts/Quicksand-Regular.ttf":["fonts/Quicksand-Regular.ttf"],"fonts/Quicksand-Medium.ttf":["fonts/Quicksand-Medium.ttf"],"fonts/Quicksand-Bold.ttf":["fonts/Quicksand-Bold.ttf"],"packages/cupertino_icons/assets/CupertinoIcons.ttf":["packages/cupertino_icons/assets/CupertinoIcons.ttf"]} -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/FontManifest.json: -------------------------------------------------------------------------------- 1 | [{"fonts":[{"asset":"fonts/MaterialIcons-Regular.ttf"}],"family":"MaterialIcons"},{"fonts":[{"weight":700,"asset":"fonts/LeagueSpartan-Bold.otf"}],"family":"League Spartan"},{"fonts":[{"weight":300,"asset":"fonts/Quicksand-Light.ttf"},{"weight":400,"asset":"fonts/Quicksand-Regular.ttf"},{"weight":500,"asset":"fonts/Quicksand-Medium.ttf"},{"weight":700,"asset":"fonts/Quicksand-Bold.ttf"}],"family":"Quicksand"},{"family":"packages/cupertino_icons/CupertinoIcons","fonts":[{"asset":"packages/cupertino_icons/assets/CupertinoIcons.ttf"}]}] -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_favourites_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_favourites_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_favourites_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_favourites_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_schedule.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_schedule_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_schedule_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_schedule_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_schedule_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_search.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_settings.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_venue_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_venue_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/ic_venue_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/ic_venue_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/2.0x/nothing_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/2.0x/nothing_here.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_favourites_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_favourites_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_favourites_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_favourites_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_schedule.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_schedule_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_schedule_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_schedule_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_schedule_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_search.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_settings.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_venue_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_venue_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/ic_venue_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/ic_venue_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/3.0x/nothing_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/3.0x/nothing_here.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_favourites_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_favourites_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_favourites_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_favourites_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_schedule.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_schedule_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_schedule_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_schedule_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_schedule_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_search.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_settings.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_venue_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_venue_selected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/ic_venue_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/ic_venue_unselected.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/assets/nothing_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/assets/nothing_here.png -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/fonts/LeagueSpartan-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/fonts/LeagueSpartan-Bold.otf -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/fonts/Quicksand-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/fonts/Quicksand-Bold.ttf -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/fonts/Quicksand-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/fonts/Quicksand-Light.ttf -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/fonts/Quicksand-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/fonts/Quicksand-Medium.ttf -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/fonts/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/fonts/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/kernel_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/kernel_blob.bin -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/platform.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Flutter/flutter_assets/platform.dill -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment this line to define a global platform for your project 2 | platform :ios, '10.0' 3 | 4 | if ENV['FLUTTER_FRAMEWORK_DIR'] == nil 5 | abort('Please set FLUTTER_FRAMEWORK_DIR to the directory containing Flutter.framework') 6 | end 7 | 8 | target 'Runner' do 9 | 10 | # Pods for Runner 11 | 12 | # Flutter Pods 13 | pod 'Flutter', :path => ENV['FLUTTER_FRAMEWORK_DIR'] 14 | 15 | if File.exists? '../.flutter-plugins' 16 | flutter_root = File.expand_path('..') 17 | File.foreach('../.flutter-plugins') { |line| 18 | plugin = line.split(pattern='=') 19 | if plugin.length == 2 20 | name = plugin[0].strip() 21 | path = plugin[1].strip() 22 | resolved_path = File.expand_path("#{path}/ios", flutter_root) 23 | pod name, :path => resolved_path 24 | else 25 | puts "Invalid plugin specification: #{line}" 26 | end 27 | } 28 | end 29 | end 30 | 31 | post_install do |installer| 32 | installer.pods_project.targets.each do |target| 33 | target.build_configurations.each do |config| 34 | config.build_settings['ENABLE_BITCODE'] = 'NO' 35 | end 36 | end 37 | end 38 | -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BoringSSL (10.0.6): 3 | - BoringSSL/Implementation (= 10.0.6) 4 | - BoringSSL/Interface (= 10.0.6) 5 | - BoringSSL/Implementation (10.0.6): 6 | - BoringSSL/Interface (= 10.0.6) 7 | - BoringSSL/Interface (10.0.6) 8 | - cloud_firestore (0.0.1): 9 | - Firebase/Auth 10 | - Firebase/Core 11 | - Firebase/Database 12 | - Firebase/Firestore 13 | - Flutter 14 | - Firebase/Auth (5.15.0): 15 | - Firebase/CoreOnly 16 | - FirebaseAuth (= 5.2.0) 17 | - Firebase/Core (5.15.0): 18 | - Firebase/CoreOnly 19 | - FirebaseAnalytics (= 5.4.0) 20 | - Firebase/CoreOnly (5.15.0): 21 | - FirebaseCore (= 5.1.10) 22 | - Firebase/Database (5.15.0): 23 | - Firebase/CoreOnly 24 | - FirebaseDatabase (= 5.0.4) 25 | - Firebase/Firestore (5.15.0): 26 | - Firebase/CoreOnly 27 | - FirebaseFirestore (= 0.16.1) 28 | - firebase_analytics (0.0.1): 29 | - Firebase/Core 30 | - Flutter 31 | - firebase_auth (0.0.1): 32 | - Firebase/Auth 33 | - Firebase/Core 34 | - Flutter 35 | - firebase_core (0.0.1): 36 | - Firebase/Core 37 | - Flutter 38 | - FirebaseAnalytics (5.4.0): 39 | - FirebaseCore (~> 5.1) 40 | - FirebaseInstanceID (~> 3.3) 41 | - GoogleAppMeasurement (= 5.4.0) 42 | - GoogleUtilities/AppDelegateSwizzler (~> 5.2) 43 | - GoogleUtilities/MethodSwizzler (~> 5.2) 44 | - GoogleUtilities/Network (~> 5.2) 45 | - "GoogleUtilities/NSData+zlib (~> 5.2)" 46 | - nanopb (~> 0.3) 47 | - FirebaseAuth (5.2.0): 48 | - FirebaseAuthInterop (~> 1.0) 49 | - FirebaseCore (~> 5.1) 50 | - GoogleUtilities/Environment (~> 5.2) 51 | - GTMSessionFetcher/Core (~> 1.1) 52 | - FirebaseAuthInterop (1.0.0) 53 | - FirebaseCore (5.1.10): 54 | - GoogleUtilities/Logger (~> 5.2) 55 | - FirebaseDatabase (5.0.4): 56 | - FirebaseAuthInterop (~> 1.0) 57 | - FirebaseCore (~> 5.1) 58 | - leveldb-library (~> 1.18) 59 | - FirebaseFirestore (0.16.1): 60 | - FirebaseAuthInterop (~> 1.0) 61 | - FirebaseCore (~> 5.1) 62 | - FirebaseFirestore/abseil-cpp (= 0.16.1) 63 | - "gRPC-C++ (= 0.0.5)" 64 | - leveldb-library (~> 1.20) 65 | - nanopb (~> 0.3.8) 66 | - Protobuf (~> 3.1) 67 | - FirebaseFirestore/abseil-cpp (0.16.1): 68 | - FirebaseAuthInterop (~> 1.0) 69 | - FirebaseCore (~> 5.1) 70 | - "gRPC-C++ (= 0.0.5)" 71 | - leveldb-library (~> 1.20) 72 | - nanopb (~> 0.3.8) 73 | - Protobuf (~> 3.1) 74 | - FirebaseInstanceID (3.3.0): 75 | - FirebaseCore (~> 5.1) 76 | - GoogleUtilities/Environment (~> 5.3) 77 | - GoogleUtilities/UserDefaults (~> 5.3) 78 | - Flutter (1.0.0) 79 | - google_sign_in (0.0.1): 80 | - Flutter 81 | - GoogleSignIn (~> 4.0) 82 | - GoogleAppMeasurement (5.4.0): 83 | - GoogleUtilities/AppDelegateSwizzler (~> 5.2) 84 | - GoogleUtilities/MethodSwizzler (~> 5.2) 85 | - GoogleUtilities/Network (~> 5.2) 86 | - "GoogleUtilities/NSData+zlib (~> 5.2)" 87 | - nanopb (~> 0.3) 88 | - GoogleSignIn (4.4.0): 89 | - "GoogleToolboxForMac/NSDictionary+URLArguments (~> 2.1)" 90 | - "GoogleToolboxForMac/NSString+URLArguments (~> 2.1)" 91 | - GTMSessionFetcher/Core (~> 1.1) 92 | - GoogleToolboxForMac/DebugUtils (2.2.0): 93 | - GoogleToolboxForMac/Defines (= 2.2.0) 94 | - GoogleToolboxForMac/Defines (2.2.0) 95 | - "GoogleToolboxForMac/NSDictionary+URLArguments (2.2.0)": 96 | - GoogleToolboxForMac/DebugUtils (= 2.2.0) 97 | - GoogleToolboxForMac/Defines (= 2.2.0) 98 | - "GoogleToolboxForMac/NSString+URLArguments (= 2.2.0)" 99 | - "GoogleToolboxForMac/NSString+URLArguments (2.2.0)" 100 | - GoogleUtilities/AppDelegateSwizzler (5.3.6): 101 | - GoogleUtilities/Environment 102 | - GoogleUtilities/Logger 103 | - GoogleUtilities/Network 104 | - GoogleUtilities/Environment (5.3.6) 105 | - GoogleUtilities/Logger (5.3.6): 106 | - GoogleUtilities/Environment 107 | - GoogleUtilities/MethodSwizzler (5.3.6): 108 | - GoogleUtilities/Logger 109 | - GoogleUtilities/Network (5.3.6): 110 | - GoogleUtilities/Logger 111 | - "GoogleUtilities/NSData+zlib" 112 | - GoogleUtilities/Reachability 113 | - "GoogleUtilities/NSData+zlib (5.3.6)" 114 | - GoogleUtilities/Reachability (5.3.6): 115 | - GoogleUtilities/Logger 116 | - GoogleUtilities/UserDefaults (5.3.6): 117 | - GoogleUtilities/Logger 118 | - "gRPC-C++ (0.0.5)": 119 | - "gRPC-C++/Implementation (= 0.0.5)" 120 | - "gRPC-C++/Interface (= 0.0.5)" 121 | - "gRPC-C++/Implementation (0.0.5)": 122 | - "gRPC-C++/Interface (= 0.0.5)" 123 | - gRPC-Core (= 1.14.0) 124 | - nanopb (~> 0.3) 125 | - "gRPC-C++/Interface (0.0.5)" 126 | - gRPC-Core (1.14.0): 127 | - gRPC-Core/Implementation (= 1.14.0) 128 | - gRPC-Core/Interface (= 1.14.0) 129 | - gRPC-Core/Implementation (1.14.0): 130 | - BoringSSL (~> 10.0) 131 | - gRPC-Core/Interface (= 1.14.0) 132 | - nanopb (~> 0.3) 133 | - gRPC-Core/Interface (1.14.0) 134 | - GTMSessionFetcher/Core (1.2.1) 135 | - leveldb-library (1.20) 136 | - nanopb (0.3.901): 137 | - nanopb/decode (= 0.3.901) 138 | - nanopb/encode (= 0.3.901) 139 | - nanopb/decode (0.3.901) 140 | - nanopb/encode (0.3.901) 141 | - Protobuf (3.6.1) 142 | 143 | DEPENDENCIES: 144 | - "cloud_firestore (from `/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.2+3/ios`)" 145 | - firebase_analytics (from `/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_analytics-1.1.0/ios`) 146 | - firebase_auth (from `/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.7.0/ios`) 147 | - "firebase_core (from `/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5+1/ios`)" 148 | - Flutter (from `/Users/niamhpower/development/flutter/bin/cache/artifacts/engine/ios`) 149 | - google_sign_in (from `/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/google_sign_in-3.2.4/ios`) 150 | 151 | SPEC REPOS: 152 | https://github.com/cocoapods/specs.git: 153 | - BoringSSL 154 | - Firebase 155 | - FirebaseAnalytics 156 | - FirebaseAuth 157 | - FirebaseAuthInterop 158 | - FirebaseCore 159 | - FirebaseDatabase 160 | - FirebaseFirestore 161 | - FirebaseInstanceID 162 | - GoogleAppMeasurement 163 | - GoogleSignIn 164 | - GoogleToolboxForMac 165 | - GoogleUtilities 166 | - "gRPC-C++" 167 | - gRPC-Core 168 | - GTMSessionFetcher 169 | - leveldb-library 170 | - nanopb 171 | - Protobuf 172 | 173 | EXTERNAL SOURCES: 174 | cloud_firestore: 175 | :path: "/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/cloud_firestore-0.8.2+3/ios" 176 | firebase_analytics: 177 | :path: "/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_analytics-1.1.0/ios" 178 | firebase_auth: 179 | :path: "/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.7.0/ios" 180 | firebase_core: 181 | :path: "/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.2.5+1/ios" 182 | Flutter: 183 | :path: "/Users/niamhpower/development/flutter/bin/cache/artifacts/engine/ios" 184 | google_sign_in: 185 | :path: "/Users/niamhpower/development/flutter/.pub-cache/hosted/pub.dartlang.org/google_sign_in-3.2.4/ios" 186 | 187 | SPEC CHECKSUMS: 188 | BoringSSL: e10f92a27043805c01071fe815a5cd98ae8212e7 189 | cloud_firestore: c575f263eb7033afb7d407e6264b21d6e622a061 190 | Firebase: 8bb9268bff82374f2cbaaabb143e725743c316ae 191 | firebase_analytics: 7fa219488f2a781ca776bf72ecc66b6ac4511272 192 | firebase_auth: 6023fc2e28feabd6571d9a105b678cce7978be90 193 | firebase_core: ce5006bb48508ee4e71e0f429a3f519bb8ee2961 194 | FirebaseAnalytics: c06f9d70577d79074214700a71fd5d39de5550fb 195 | FirebaseAuth: 02e969ff430e156d99d4cb842d77b806b71ad7bb 196 | FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc 197 | FirebaseCore: 35747502d9e8c6ee217385ad04446c7c2aaf9c5c 198 | FirebaseDatabase: 0621689f77528d62b47e1c06ca737c4c19275d1a 199 | FirebaseFirestore: 58043a1c2d2c91efdaa8d8f385cdbaa2ce750cfe 200 | FirebaseInstanceID: e2fa4cb35ef5558c200f7f0ad8a53e212215f93e 201 | Flutter: 58dd7d1b27887414a370fcccb9e645c08ffd7a6a 202 | google_sign_in: 27e70a98b529f0b076d4b19f231b81da28b1750b 203 | GoogleAppMeasurement: 98b71f5e04142793729a5ef23e5b96651ff4b70f 204 | GoogleSignIn: 7ff245e1a7b26d379099d3243a562f5747e23d39 205 | GoogleToolboxForMac: ff31605b7d66400dcec09bed5861689aebadda4d 206 | GoogleUtilities: 95996bea7c7d9b8fb811b7507669a4a8762f80c7 207 | "gRPC-C++": 19eec1ffd34de29453f5fab5b4697ad0f240ad51 208 | gRPC-Core: f4836515817c0eb479aeeb9cc27c91c4ba62a9f6 209 | GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca 210 | leveldb-library: 08cba283675b7ed2d99629a4bc5fd052cd2bb6a5 211 | nanopb: 2901f78ea1b7b4015c860c2fdd1ea2fee1a18d48 212 | Protobuf: 1eb9700044745f00181c136ef21b8ff3ad5a0fd5 213 | 214 | PODFILE CHECKSUM: 35947b2c1cae92ea15d99c3339306cd184068dd6 215 | 216 | COCOAPODS: 1.6.0.beta.2 217 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; 11 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; }; 12 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 13 | 71E311B4205D2752007FDD3D /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 71E311B3205D2752007FDD3D /* GoogleService-Info.plist */; }; 14 | 71E311B7205D2ACC007FDD3D /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E311B6205D2ACC007FDD3D /* GeneratedPluginRegistrant.m */; }; 15 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; }; 16 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 17 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; }; 18 | 9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB31CF90195004384FC /* Generated.xcconfig */; }; 19 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */; }; 20 | 97C146F31CF9000F007C117D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C146F21CF9000F007C117D /* main.m */; }; 21 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; 22 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; 23 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; 24 | B1F68C4FF305A304B184732D /* libPods-Runner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 26CD9592CBA7A25601007822 /* libPods-Runner.a */; }; 25 | /* End PBXBuildFile section */ 26 | 27 | /* Begin PBXCopyFilesBuildPhase section */ 28 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = { 29 | isa = PBXCopyFilesBuildPhase; 30 | buildActionMask = 2147483647; 31 | dstPath = ""; 32 | dstSubfolderSpec = 10; 33 | files = ( 34 | 3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */, 35 | 9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */, 36 | ); 37 | name = "Embed Frameworks"; 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | /* End PBXCopyFilesBuildPhase section */ 41 | 42 | /* Begin PBXFileReference section */ 43 | 26CD9592CBA7A25601007822 /* libPods-Runner.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Runner.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; 45 | 3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = ""; }; 46 | 71E311B3205D2752007FDD3D /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; 47 | 71E311B5205D2ACC007FDD3D /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GeneratedPluginRegistrant.h; path = ../../../../IdeaProjects/my_friendlychat/ios/Runner/GeneratedPluginRegistrant.h; sourceTree = ""; }; 48 | 71E311B6205D2ACC007FDD3D /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GeneratedPluginRegistrant.m; path = ../../../../IdeaProjects/my_friendlychat/ios/Runner/GeneratedPluginRegistrant.m; sourceTree = ""; }; 49 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; 50 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 51 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 52 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; 53 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; 54 | 9740EEBA1CF902C7004384FC /* Flutter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Flutter.framework; path = Flutter/Flutter.framework; sourceTree = ""; }; 55 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 97C146F21CF9000F007C117D /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 57 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 58 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 59 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 60 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 61 | C8DC82707CE327D59B5E6D71 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; 62 | F5DF11C917B27772825D12A9 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; 63 | /* End PBXFileReference section */ 64 | 65 | /* Begin PBXFrameworksBuildPhase section */ 66 | 97C146EB1CF9000F007C117D /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | 9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */, 71 | 3B80C3941E831B6300D905FE /* App.framework in Frameworks */, 72 | B1F68C4FF305A304B184732D /* libPods-Runner.a in Frameworks */, 73 | ); 74 | runOnlyForDeploymentPostprocessing = 0; 75 | }; 76 | /* End PBXFrameworksBuildPhase section */ 77 | 78 | /* Begin PBXGroup section */ 79 | 840012C8B5EDBCF56B0E4AC1 /* Pods */ = { 80 | isa = PBXGroup; 81 | children = ( 82 | C8DC82707CE327D59B5E6D71 /* Pods-Runner.debug.xcconfig */, 83 | F5DF11C917B27772825D12A9 /* Pods-Runner.release.xcconfig */, 84 | ); 85 | name = Pods; 86 | sourceTree = ""; 87 | }; 88 | 9740EEB11CF90186004384FC /* Flutter */ = { 89 | isa = PBXGroup; 90 | children = ( 91 | 3B80C3931E831B6300D905FE /* App.framework */, 92 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, 93 | 9740EEBA1CF902C7004384FC /* Flutter.framework */, 94 | 9740EEB21CF90195004384FC /* Debug.xcconfig */, 95 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, 96 | 9740EEB31CF90195004384FC /* Generated.xcconfig */, 97 | ); 98 | name = Flutter; 99 | sourceTree = ""; 100 | }; 101 | 97C146E51CF9000F007C117D = { 102 | isa = PBXGroup; 103 | children = ( 104 | 9740EEB11CF90186004384FC /* Flutter */, 105 | 97C146F01CF9000F007C117D /* Runner */, 106 | 97C146EF1CF9000F007C117D /* Products */, 107 | 840012C8B5EDBCF56B0E4AC1 /* Pods */, 108 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */, 109 | ); 110 | sourceTree = ""; 111 | }; 112 | 97C146EF1CF9000F007C117D /* Products */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | 97C146EE1CF9000F007C117D /* Runner.app */, 116 | ); 117 | name = Products; 118 | sourceTree = ""; 119 | }; 120 | 97C146F01CF9000F007C117D /* Runner */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | 71E311B3205D2752007FDD3D /* GoogleService-Info.plist */, 124 | 7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */, 125 | 7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */, 126 | 97C146FA1CF9000F007C117D /* Main.storyboard */, 127 | 97C146FD1CF9000F007C117D /* Assets.xcassets */, 128 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, 129 | 97C147021CF9000F007C117D /* Info.plist */, 130 | 97C146F11CF9000F007C117D /* Supporting Files */, 131 | ); 132 | path = Runner; 133 | sourceTree = ""; 134 | }; 135 | 97C146F11CF9000F007C117D /* Supporting Files */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 71E311B5205D2ACC007FDD3D /* GeneratedPluginRegistrant.h */, 139 | 71E311B6205D2ACC007FDD3D /* GeneratedPluginRegistrant.m */, 140 | 97C146F21CF9000F007C117D /* main.m */, 141 | ); 142 | name = "Supporting Files"; 143 | sourceTree = ""; 144 | }; 145 | CF3B75C9A7D2FA2A4C99F110 /* Frameworks */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 26CD9592CBA7A25601007822 /* libPods-Runner.a */, 149 | ); 150 | name = Frameworks; 151 | sourceTree = ""; 152 | }; 153 | /* End PBXGroup section */ 154 | 155 | /* Begin PBXNativeTarget section */ 156 | 97C146ED1CF9000F007C117D /* Runner */ = { 157 | isa = PBXNativeTarget; 158 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; 159 | buildPhases = ( 160 | AB1344B0443C71CD721E1BB7 /* [CP] Check Pods Manifest.lock */, 161 | 9740EEB61CF901F6004384FC /* Run Script */, 162 | 97C146EA1CF9000F007C117D /* Sources */, 163 | 97C146EB1CF9000F007C117D /* Frameworks */, 164 | 97C146EC1CF9000F007C117D /* Resources */, 165 | 9705A1C41CF9048500538489 /* Embed Frameworks */, 166 | 95BB15E9E1769C0D146AA592 /* [CP] Embed Pods Frameworks */, 167 | 532EA9D341340B1DCD08293D /* [CP] Copy Pods Resources */, 168 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */, 169 | ); 170 | buildRules = ( 171 | ); 172 | dependencies = ( 173 | ); 174 | name = Runner; 175 | productName = Runner; 176 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */; 177 | productType = "com.apple.product-type.application"; 178 | }; 179 | /* End PBXNativeTarget section */ 180 | 181 | /* Begin PBXProject section */ 182 | 97C146E61CF9000F007C117D /* Project object */ = { 183 | isa = PBXProject; 184 | attributes = { 185 | LastUpgradeCheck = 0830; 186 | ORGANIZATIONNAME = "The Chromium Authors"; 187 | TargetAttributes = { 188 | 97C146ED1CF9000F007C117D = { 189 | CreatedOnToolsVersion = 7.3.1; 190 | }; 191 | }; 192 | }; 193 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; 194 | compatibilityVersion = "Xcode 3.2"; 195 | developmentRegion = English; 196 | hasScannedForEncodings = 0; 197 | knownRegions = ( 198 | en, 199 | Base, 200 | ); 201 | mainGroup = 97C146E51CF9000F007C117D; 202 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */; 203 | projectDirPath = ""; 204 | projectRoot = ""; 205 | targets = ( 206 | 97C146ED1CF9000F007C117D /* Runner */, 207 | ); 208 | }; 209 | /* End PBXProject section */ 210 | 211 | /* Begin PBXResourcesBuildPhase section */ 212 | 97C146EC1CF9000F007C117D /* Resources */ = { 213 | isa = PBXResourcesBuildPhase; 214 | buildActionMask = 2147483647; 215 | files = ( 216 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, 217 | 9740EEB51CF90195004384FC /* Generated.xcconfig in Resources */, 218 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, 219 | 9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */, 220 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, 221 | 71E311B4205D2752007FDD3D /* GoogleService-Info.plist in Resources */, 222 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, 223 | ); 224 | runOnlyForDeploymentPostprocessing = 0; 225 | }; 226 | /* End PBXResourcesBuildPhase section */ 227 | 228 | /* Begin PBXShellScriptBuildPhase section */ 229 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { 230 | isa = PBXShellScriptBuildPhase; 231 | buildActionMask = 2147483647; 232 | files = ( 233 | ); 234 | inputPaths = ( 235 | ); 236 | name = "Thin Binary"; 237 | outputPaths = ( 238 | ); 239 | runOnlyForDeploymentPostprocessing = 0; 240 | shellPath = /bin/sh; 241 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin"; 242 | }; 243 | 532EA9D341340B1DCD08293D /* [CP] Copy Pods Resources */ = { 244 | isa = PBXShellScriptBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | ); 248 | inputPaths = ( 249 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh", 250 | "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore/gRPCCertificates-Firestore.bundle", 251 | "${PODS_ROOT}/GoogleSignIn/Resources/GoogleSignIn.bundle", 252 | ); 253 | name = "[CP] Copy Pods Resources"; 254 | outputPaths = ( 255 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/gRPCCertificates-Firestore.bundle", 256 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleSignIn.bundle", 257 | ); 258 | runOnlyForDeploymentPostprocessing = 0; 259 | shellPath = /bin/sh; 260 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n"; 261 | showEnvVarsInLog = 0; 262 | }; 263 | 95BB15E9E1769C0D146AA592 /* [CP] Embed Pods Frameworks */ = { 264 | isa = PBXShellScriptBuildPhase; 265 | buildActionMask = 2147483647; 266 | files = ( 267 | ); 268 | inputPaths = ( 269 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh", 270 | "${PODS_ROOT}/../../../../development/flutter/bin/cache/artifacts/engine/ios/Flutter.framework", 271 | ); 272 | name = "[CP] Embed Pods Frameworks"; 273 | outputPaths = ( 274 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework", 275 | ); 276 | runOnlyForDeploymentPostprocessing = 0; 277 | shellPath = /bin/sh; 278 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; 279 | showEnvVarsInLog = 0; 280 | }; 281 | 9740EEB61CF901F6004384FC /* Run Script */ = { 282 | isa = PBXShellScriptBuildPhase; 283 | buildActionMask = 2147483647; 284 | files = ( 285 | ); 286 | inputPaths = ( 287 | ); 288 | name = "Run Script"; 289 | outputPaths = ( 290 | ); 291 | runOnlyForDeploymentPostprocessing = 0; 292 | shellPath = /bin/sh; 293 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; 294 | }; 295 | AB1344B0443C71CD721E1BB7 /* [CP] Check Pods Manifest.lock */ = { 296 | isa = PBXShellScriptBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | ); 300 | inputPaths = ( 301 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 302 | "${PODS_ROOT}/Manifest.lock", 303 | ); 304 | name = "[CP] Check Pods Manifest.lock"; 305 | outputPaths = ( 306 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", 307 | ); 308 | runOnlyForDeploymentPostprocessing = 0; 309 | shellPath = /bin/sh; 310 | 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"; 311 | showEnvVarsInLog = 0; 312 | }; 313 | /* End PBXShellScriptBuildPhase section */ 314 | 315 | /* Begin PBXSourcesBuildPhase section */ 316 | 97C146EA1CF9000F007C117D /* Sources */ = { 317 | isa = PBXSourcesBuildPhase; 318 | buildActionMask = 2147483647; 319 | files = ( 320 | 978B8F6F1D3862AE00F588F7 /* AppDelegate.m in Sources */, 321 | 97C146F31CF9000F007C117D /* main.m in Sources */, 322 | 71E311B7205D2ACC007FDD3D /* GeneratedPluginRegistrant.m in Sources */, 323 | ); 324 | runOnlyForDeploymentPostprocessing = 0; 325 | }; 326 | /* End PBXSourcesBuildPhase section */ 327 | 328 | /* Begin PBXVariantGroup section */ 329 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = { 330 | isa = PBXVariantGroup; 331 | children = ( 332 | 97C146FB1CF9000F007C117D /* Base */, 333 | ); 334 | name = Main.storyboard; 335 | sourceTree = ""; 336 | }; 337 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { 338 | isa = PBXVariantGroup; 339 | children = ( 340 | 97C147001CF9000F007C117D /* Base */, 341 | ); 342 | name = LaunchScreen.storyboard; 343 | sourceTree = ""; 344 | }; 345 | /* End PBXVariantGroup section */ 346 | 347 | /* Begin XCBuildConfiguration section */ 348 | 97C147031CF9000F007C117D /* Debug */ = { 349 | isa = XCBuildConfiguration; 350 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 351 | buildSettings = { 352 | ALWAYS_SEARCH_USER_PATHS = NO; 353 | CLANG_ANALYZER_NONNULL = YES; 354 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 355 | CLANG_CXX_LIBRARY = "libc++"; 356 | CLANG_ENABLE_MODULES = YES; 357 | CLANG_ENABLE_OBJC_ARC = YES; 358 | CLANG_WARN_BOOL_CONVERSION = YES; 359 | CLANG_WARN_CONSTANT_CONVERSION = YES; 360 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 361 | CLANG_WARN_EMPTY_BODY = YES; 362 | CLANG_WARN_ENUM_CONVERSION = YES; 363 | CLANG_WARN_INFINITE_RECURSION = YES; 364 | CLANG_WARN_INT_CONVERSION = YES; 365 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 366 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 367 | CLANG_WARN_UNREACHABLE_CODE = YES; 368 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 369 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 370 | COPY_PHASE_STRIP = NO; 371 | DEBUG_INFORMATION_FORMAT = dwarf; 372 | ENABLE_STRICT_OBJC_MSGSEND = YES; 373 | ENABLE_TESTABILITY = YES; 374 | GCC_C_LANGUAGE_STANDARD = gnu99; 375 | GCC_DYNAMIC_NO_PIC = NO; 376 | GCC_NO_COMMON_BLOCKS = YES; 377 | GCC_OPTIMIZATION_LEVEL = 0; 378 | GCC_PREPROCESSOR_DEFINITIONS = ( 379 | "DEBUG=1", 380 | "$(inherited)", 381 | ); 382 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 383 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 384 | GCC_WARN_UNDECLARED_SELECTOR = YES; 385 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 386 | GCC_WARN_UNUSED_FUNCTION = YES; 387 | GCC_WARN_UNUSED_VARIABLE = YES; 388 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 389 | MTL_ENABLE_DEBUG_INFO = YES; 390 | ONLY_ACTIVE_ARCH = YES; 391 | SDKROOT = iphoneos; 392 | TARGETED_DEVICE_FAMILY = "1,2"; 393 | }; 394 | name = Debug; 395 | }; 396 | 97C147041CF9000F007C117D /* Release */ = { 397 | isa = XCBuildConfiguration; 398 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 399 | buildSettings = { 400 | ALWAYS_SEARCH_USER_PATHS = NO; 401 | CLANG_ANALYZER_NONNULL = YES; 402 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 403 | CLANG_CXX_LIBRARY = "libc++"; 404 | CLANG_ENABLE_MODULES = YES; 405 | CLANG_ENABLE_OBJC_ARC = YES; 406 | CLANG_WARN_BOOL_CONVERSION = YES; 407 | CLANG_WARN_CONSTANT_CONVERSION = YES; 408 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 409 | CLANG_WARN_EMPTY_BODY = YES; 410 | CLANG_WARN_ENUM_CONVERSION = YES; 411 | CLANG_WARN_INFINITE_RECURSION = YES; 412 | CLANG_WARN_INT_CONVERSION = YES; 413 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 414 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 415 | CLANG_WARN_UNREACHABLE_CODE = YES; 416 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 417 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 418 | COPY_PHASE_STRIP = NO; 419 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 420 | ENABLE_NS_ASSERTIONS = NO; 421 | ENABLE_STRICT_OBJC_MSGSEND = YES; 422 | GCC_C_LANGUAGE_STANDARD = gnu99; 423 | GCC_NO_COMMON_BLOCKS = YES; 424 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 425 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 426 | GCC_WARN_UNDECLARED_SELECTOR = YES; 427 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 428 | GCC_WARN_UNUSED_FUNCTION = YES; 429 | GCC_WARN_UNUSED_VARIABLE = YES; 430 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 431 | MTL_ENABLE_DEBUG_INFO = NO; 432 | SDKROOT = iphoneos; 433 | TARGETED_DEVICE_FAMILY = "1,2"; 434 | VALIDATE_PRODUCT = YES; 435 | }; 436 | name = Release; 437 | }; 438 | 97C147061CF9000F007C117D /* Debug */ = { 439 | isa = XCBuildConfiguration; 440 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; 441 | buildSettings = { 442 | ARCHS = arm64; 443 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 444 | ENABLE_BITCODE = NO; 445 | FRAMEWORK_SEARCH_PATHS = ( 446 | "$(inherited)", 447 | "$(PROJECT_DIR)/Flutter", 448 | ); 449 | INFOPLIST_FILE = Runner/Info.plist; 450 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 451 | LIBRARY_SEARCH_PATHS = ( 452 | "$(inherited)", 453 | "$(PROJECT_DIR)/Flutter", 454 | ); 455 | PRODUCT_BUNDLE_IDENTIFIER = net.squanchy.develop; 456 | PRODUCT_NAME = "$(TARGET_NAME)"; 457 | }; 458 | name = Debug; 459 | }; 460 | 97C147071CF9000F007C117D /* Release */ = { 461 | isa = XCBuildConfiguration; 462 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; 463 | buildSettings = { 464 | ARCHS = arm64; 465 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 466 | ENABLE_BITCODE = NO; 467 | FRAMEWORK_SEARCH_PATHS = ( 468 | "$(inherited)", 469 | "$(PROJECT_DIR)/Flutter", 470 | ); 471 | INFOPLIST_FILE = Runner/Info.plist; 472 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 473 | LIBRARY_SEARCH_PATHS = ( 474 | "$(inherited)", 475 | "$(PROJECT_DIR)/Flutter", 476 | ); 477 | PRODUCT_BUNDLE_IDENTIFIER = net.squanchy.develop; 478 | PRODUCT_NAME = "$(TARGET_NAME)"; 479 | }; 480 | name = Release; 481 | }; 482 | /* End XCBuildConfiguration section */ 483 | 484 | /* Begin XCConfigurationList section */ 485 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { 486 | isa = XCConfigurationList; 487 | buildConfigurations = ( 488 | 97C147031CF9000F007C117D /* Debug */, 489 | 97C147041CF9000F007C117D /* Release */, 490 | ); 491 | defaultConfigurationIsVisible = 0; 492 | defaultConfigurationName = Release; 493 | }; 494 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { 495 | isa = XCConfigurationList; 496 | buildConfigurations = ( 497 | 97C147061CF9000F007C117D /* Debug */, 498 | 97C147071CF9000F007C117D /* Release */, 499 | ); 500 | defaultConfigurationIsVisible = 0; 501 | defaultConfigurationName = Release; 502 | }; 503 | /* End XCConfigurationList section */ 504 | }; 505 | rootObject = 97C146E61CF9000F007C117D /* Project object */; 506 | } 507 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 39 | 40 | 41 | 42 | 43 | 44 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 67 | 73 | 75 | 81 | 82 | 83 | 84 | 86 | 87 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #include "AppDelegate.h" 2 | #include "GeneratedPluginRegistrant.h" 3 | 4 | @implementation AppDelegate 5 | 6 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 7 | [GeneratedPluginRegistrant registerWithRegistry:self]; 8 | // Override point for customization after application launch. 9 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 10 | } 11 | 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "20x20", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-App-20x20@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "20x20", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-App-20x20@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "29x29", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-App-29x29@1x.png", 19 | "scale" : "1x" 20 | }, 21 | { 22 | "size" : "29x29", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-App-29x29@2x.png", 25 | "scale" : "2x" 26 | }, 27 | { 28 | "size" : "29x29", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-App-29x29@3x.png", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "size" : "40x40", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-App-40x40@2x.png", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "size" : "40x40", 41 | "idiom" : "iphone", 42 | "filename" : "Icon-App-40x40@3x.png", 43 | "scale" : "3x" 44 | }, 45 | { 46 | "size" : "60x60", 47 | "idiom" : "iphone", 48 | "filename" : "Icon-App-60x60@2x.png", 49 | "scale" : "2x" 50 | }, 51 | { 52 | "size" : "60x60", 53 | "idiom" : "iphone", 54 | "filename" : "Icon-App-60x60@3x.png", 55 | "scale" : "3x" 56 | }, 57 | { 58 | "size" : "20x20", 59 | "idiom" : "ipad", 60 | "filename" : "Icon-App-20x20@1x.png", 61 | "scale" : "1x" 62 | }, 63 | { 64 | "size" : "20x20", 65 | "idiom" : "ipad", 66 | "filename" : "Icon-App-20x20@2x.png", 67 | "scale" : "2x" 68 | }, 69 | { 70 | "size" : "29x29", 71 | "idiom" : "ipad", 72 | "filename" : "Icon-App-29x29@1x.png", 73 | "scale" : "1x" 74 | }, 75 | { 76 | "size" : "29x29", 77 | "idiom" : "ipad", 78 | "filename" : "Icon-App-29x29@2x.png", 79 | "scale" : "2x" 80 | }, 81 | { 82 | "size" : "40x40", 83 | "idiom" : "ipad", 84 | "filename" : "Icon-App-40x40@1x.png", 85 | "scale" : "1x" 86 | }, 87 | { 88 | "size" : "40x40", 89 | "idiom" : "ipad", 90 | "filename" : "Icon-App-40x40@2x.png", 91 | "scale" : "2x" 92 | }, 93 | { 94 | "size" : "76x76", 95 | "idiom" : "ipad", 96 | "filename" : "Icon-App-76x76@1x.png", 97 | "scale" : "1x" 98 | }, 99 | { 100 | "size" : "76x76", 101 | "idiom" : "ipad", 102 | "filename" : "Icon-App-76x76@2x.png", 103 | "scale" : "2x" 104 | }, 105 | { 106 | "size" : "83.5x83.5", 107 | "idiom" : "ipad", 108 | "filename" : "Icon-App-83.5x83.5@2x.png", 109 | "scale" : "2x" 110 | } 111 | ], 112 | "info" : { 113 | "version" : 1, 114 | "author" : "xcode" 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squanchy-dev/squanchy-flutter/f450f8906df7caaa2e0d1666cded7dcaed8591bb/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | #ifndef GeneratedPluginRegistrant_h 6 | #define GeneratedPluginRegistrant_h 7 | 8 | #import 9 | 10 | @interface GeneratedPluginRegistrant : NSObject 11 | + (void)registerWithRegistry:(NSObject*)registry; 12 | @end 13 | 14 | #endif /* GeneratedPluginRegistrant_h */ 15 | -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.m: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | #import "GeneratedPluginRegistrant.h" 6 | #import 7 | #import 8 | #import 9 | #import 10 | #import 11 | 12 | @implementation GeneratedPluginRegistrant 13 | 14 | + (void)registerWithRegistry:(NSObject*)registry { 15 | [FLTCloudFirestorePlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTCloudFirestorePlugin"]]; 16 | [FLTFirebaseAnalyticsPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseAnalyticsPlugin"]]; 17 | [FLTFirebaseAuthPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseAuthPlugin"]]; 18 | [FLTFirebaseCorePlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTFirebaseCorePlugin"]]; 19 | [FLTGoogleSignInPlugin registerWithRegistrar:[registry registrarForPlugin:@"FLTGoogleSignInPlugin"]]; 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleURLTypes 6 | 7 | 8 | CFBundleTypeRole 9 | Editor 10 | CFBundleURLSchemes 11 | 12 | com.googleusercontent.apps.357087628537-5krgp9o0caphemagmepi8jld32n4de5c 13 | net.squanchy.develop 14 | 15 | 16 | 17 | CFBundleDevelopmentRegion 18 | en 19 | CFBundleExecutable 20 | $(EXECUTABLE_NAME) 21 | CFBundleIdentifier 22 | $(PRODUCT_BUNDLE_IDENTIFIER) 23 | CFBundleInfoDictionaryVersion 24 | 6.0 25 | CFBundleName 26 | squanchy_flutter 27 | CFBundlePackageType 28 | APPL 29 | CFBundleShortVersionString 30 | 1.0 31 | CFBundleSignature 32 | ???? 33 | CFBundleVersion 34 | 1 35 | LSRequiresIPhoneOS 36 | 37 | UILaunchStoryboardName 38 | LaunchScreen 39 | UIMainStoryboardFile 40 | Main 41 | UIRequiredDeviceCapabilities 42 | 43 | arm64 44 | 45 | UISupportedInterfaceOrientations 46 | 47 | UIInterfaceOrientationPortrait 48 | UIInterfaceOrientationLandscapeLeft 49 | UIInterfaceOrientationLandscapeRight 50 | 51 | UISupportedInterfaceOrientations~ipad 52 | 53 | UIInterfaceOrientationPortrait 54 | UIInterfaceOrientationPortraitUpsideDown 55 | UIInterfaceOrientationLandscapeLeft 56 | UIInterfaceOrientationLandscapeRight 57 | 58 | UIViewControllerBasedStatusBarAppearance 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char * argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, 8 | NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /lib/eventdetails/event.dart: -------------------------------------------------------------------------------- 1 | class Event { 2 | final String title; 3 | final List speakers; 4 | final String where; 5 | final String floor; 6 | final String when; 7 | final String description; 8 | 9 | const Event({ 10 | this.title, 11 | this.speakers, 12 | this.where, 13 | this.floor, 14 | this.when, 15 | this.description, 16 | }); 17 | } 18 | 19 | class Speaker { 20 | final String fullName; 21 | final String avatarUrl; 22 | 23 | const Speaker({this.fullName, this.avatarUrl}); 24 | } 25 | 26 | const kEvent = const Event( 27 | title: "A New Hope", 28 | speakers: const [ 29 | const Speaker( 30 | fullName: "Eugenio Marletti", 31 | avatarUrl: 32 | "http://it.droidcon.com/2017/wp-content/uploads/2015/02/3f952ce.jpg"), 33 | const Speaker( 34 | fullName: "Sebastiano Poggi", 35 | avatarUrl: 36 | "http://it.droidcon.com/2017/wp-content/uploads/2015/02/sebastiano-poggi.jpg"), 37 | ], 38 | where: "Sala Londra", 39 | floor: "Ground floor", 40 | when: "Thursday, 6 April at 16:00", 41 | description: """ 42 | In this day and age, the Android UI is getting more and more features. Which is amazing. But they get layered on top of years of TODOs, less-than-clean code, and quick patches. This means the APIs are not as terse as us devs would like, and there’s plenty of unwritten knowledge to have to make things work. What if there was something that took the best bits of the Android UI model and wrapped that in a modern, sensible codebase? 43 | 44 | Turns out, there is. It’s part of a “native cross-platform” framework, Flutter, that is being developed in Google and used in some of their products. While still a long way from stable and feature-complete, Flutter has an interesting approach of including a full framework based off of Dart. It’s modeled on the good bits of the Android UI framework and will allow your code to run consistently across devices, without the weird BSP- or vendor-specific issues we unfortunately got used to. 45 | 46 | This talk is going to give you an overview of that framework, highlight where it differs from the Android one, and give you an idea of where things are at this stage of the Flutter development. Let’s try to understand if Flutter is something to look forward to 47 | In this day and age, the Android UI is getting more and more features. Which is amazing. But they get layered on top of years of TODOs, less-than-clean code, and quick patches. This means the APIs are not as terse as us devs would like, and there’s plenty of unwritten knowledge to have to make things work. What if there was something that took the best bits of the Android UI model and wrapped that in a modern, sensible codebase? 48 | """, 49 | ); 50 | -------------------------------------------------------------------------------- /lib/eventdetails/eventdetails.dart: -------------------------------------------------------------------------------- 1 | import 'package:SquanchyFlutter/utils/flexible_app_bar_widget.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | import 'event.dart'; 5 | 6 | class EventDetailsPage extends StatefulWidget { 7 | EventDetailsPage({Key key}) : super(key: key); 8 | 9 | @override 10 | _EventDetailsPageState createState() => new _EventDetailsPageState(kEvent); 11 | } 12 | 13 | class _EventDetailsPageState extends State { 14 | _EventDetailsPageState(this.event); 15 | 16 | final scaffoldKey = new GlobalKey(); 17 | final Event event; 18 | 19 | @override 20 | Widget build(BuildContext context) { 21 | final theme = Theme.of(context); 22 | 23 | final leftPadding = 16.0; 24 | final keylineAfterLabel = 72.0 - leftPadding; 25 | 26 | final titleTextStyle = theme.textTheme.display1.copyWith( 27 | color: Colors.white, 28 | fontSize: 24.0, 29 | fontFamily: "League Spartan", 30 | fontWeight: FontWeight.w700, 31 | ); 32 | 33 | final speakerTextStyle = theme.textTheme.title.copyWith( 34 | color: Colors.white, 35 | fontSize: 14.0, 36 | height: 1.714285714, 37 | fontFamily: "League Spartan", 38 | fontWeight: FontWeight.w700, 39 | letterSpacing: -.1, 40 | ); 41 | 42 | final labelsTextStyle = speakerTextStyle.copyWith( 43 | color: theme.primaryColor, 44 | ); 45 | 46 | final floorTextStyle = theme.textTheme.body1.copyWith( 47 | color: const Color(0x8A6B6B6B), 48 | ); 49 | 50 | final descriptionTextStyle = theme.textTheme.body1.copyWith( 51 | height: 1.95, 52 | ); 53 | 54 | final titleWidget = new Padding( 55 | padding: new EdgeInsets.only(top: 12.0, bottom: 8.0), 56 | child: new Text(event.title, style: titleTextStyle)); 57 | 58 | final appBarBottom = new Padding( 59 | padding: new EdgeInsets.only(left: 72.0, right: 8.0, bottom: 8.0), 60 | child: new Column( 61 | mainAxisSize: MainAxisSize.min, 62 | children: _speakersWidgets(speakerTextStyle, event.speakers) 63 | ..add(titleWidget), 64 | crossAxisAlignment: CrossAxisAlignment.start, 65 | ), 66 | ) 67 | ; 68 | 69 | final appBar = new AppBar( 70 | leading: new BackButton(), 71 | actions: [ 72 | new IconButton( 73 | icon: const Icon(Icons.search), 74 | onPressed: _handleSearchPress, 75 | ), 76 | ], 77 | bottom: new FlexibleAppBarBottomWidget 78 | .fromContext(context, appBarBottom), 79 | ); 80 | 81 | final rowWhen = _rowWithLabelWidget( 82 | "When", 83 | labelsTextStyle, 84 | keylineAfterLabel, 85 | [ 86 | new Text(event.when), 87 | ] 88 | ); 89 | 90 | final rowWhere = _rowWithLabelWidget( 91 | "Where", 92 | labelsTextStyle, 93 | keylineAfterLabel, 94 | [ 95 | new Text(event.where), 96 | new Text(" "), 97 | new Text(event.floor, style: floorTextStyle), 98 | ] 99 | ); 100 | 101 | final rowAbout = new Padding( 102 | padding: new EdgeInsets.only(bottom: 16.0), 103 | child: new Text("About", style: labelsTextStyle), 104 | ); 105 | 106 | final rowDescription = new Text( 107 | event.description, 108 | style: descriptionTextStyle, 109 | ); 110 | 111 | final body = new ListView( 112 | padding: new EdgeInsets.fromLTRB(leftPadding, 18.0, 24.0, 18.0), 113 | children: [ 114 | rowWhen, 115 | rowWhere, 116 | rowAbout, 117 | rowDescription, 118 | ], 119 | ); 120 | 121 | final fab = new FloatingActionButton( 122 | backgroundColor: theme.primaryColor, 123 | onPressed: _handleFABPress, 124 | child: new Icon( 125 | Icons.favorite_border, 126 | color: Colors.white, 127 | ), 128 | ); 129 | 130 | return new Scaffold( 131 | key: scaffoldKey, 132 | appBar: appBar, 133 | body: body, 134 | floatingActionButton: fab, 135 | backgroundColor: const Color(0xFFF1F1F1), 136 | ); 137 | } 138 | 139 | List _speakersWidgets 140 | (TextStyle speakerTextStyle, List speakers) { 141 | final speakerNames = speakers.map((speaker) => speaker.fullName).join(", "); 142 | 143 | final speakerNamesWidget = new Text(speakerNames, style: speakerTextStyle); 144 | 145 | return [ 146 | new Row( 147 | children: speakers 148 | .map((speaker) => 149 | new Padding( 150 | padding: new EdgeInsets.only(right: 6.0), 151 | child: new CircleAvatar( 152 | backgroundImage: new NetworkImage(speaker.avatarUrl), 153 | radius: 20.0, 154 | ), 155 | ) 156 | ) 157 | .toList()), 158 | new Padding( 159 | padding: new EdgeInsets.only(top: 9.0), child: speakerNamesWidget), 160 | ]; 161 | } 162 | 163 | Widget _rowWithLabelWidget(String label, 164 | TextStyle labelTextStyle, 165 | double labelChildrenInset, 166 | Iterable children) => 167 | new Padding( 168 | padding: new EdgeInsets.only(bottom: 32.0), 169 | child: new Row( 170 | crossAxisAlignment: CrossAxisAlignment.baseline, 171 | textBaseline: TextBaseline.alphabetic, 172 | children: [ 173 | new SizedBox( 174 | width: labelChildrenInset, 175 | child: new Text(label, style: labelTextStyle), 176 | ), 177 | ] 178 | ..addAll(children), 179 | ), 180 | ); 181 | 182 | _handleSearchPress() => _showSnackBar("¯\\_(ツ)_/¯"); 183 | 184 | _handleFABPress() => _showSnackBar("<3"); 185 | 186 | _showSnackBar(String text) { 187 | scaffoldKey.currentState 188 | .showSnackBar(new SnackBar(content: new Text(text))); 189 | } 190 | } 191 | -------------------------------------------------------------------------------- /lib/favourites/favourites.dart: -------------------------------------------------------------------------------- 1 | import 'package:SquanchyFlutter/utils/button_widgets.dart'; 2 | import 'package:flutter/cupertino.dart'; 3 | import 'package:flutter/material.dart'; 4 | 5 | class FavouritesView extends StatelessWidget { 6 | @override 7 | Widget build(BuildContext context) 8 | { 9 | final theme = Theme.of(context); 10 | 11 | var appBar = new AppBar( 12 | iconTheme: theme.iconTheme, 13 | title: const Text('FAVOURITES'), 14 | backgroundColor: theme.accentColor, 15 | actions: [ 16 | new SettingsButton(), 17 | new SearchButton() 18 | ] 19 | ); 20 | 21 | return new Scaffold( 22 | appBar: appBar, 23 | backgroundColor: theme.backgroundColor, 24 | ); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | import 'squanchy_app.dart'; 4 | 5 | void main() { 6 | runApp(new SquanchyFlutterApp()); 7 | } 8 | -------------------------------------------------------------------------------- /lib/models/EventModels.dart: -------------------------------------------------------------------------------- 1 | class EventDay { 2 | Day day; 3 | List events; 4 | 5 | EventDay(dynamic doc) { 6 | day = new Day(doc['day']); 7 | List array = doc['events']; 8 | 9 | events = array.map((doc) { 10 | return new Event(doc); 11 | }).toList(); 12 | } 13 | } 14 | 15 | class Day { 16 | DateTime dateTime; 17 | String id; 18 | int position; 19 | 20 | Day(dynamic doc) { 21 | position = doc['position']; 22 | id = doc['id']; 23 | dateTime = doc['date']; 24 | } 25 | } 26 | 27 | enum EventType { talk } 28 | 29 | class Event { 30 | String title; 31 | EventType type; 32 | Day day; 33 | DateTime startTime; 34 | DateTime endTime; 35 | String description; 36 | Level level; 37 | Place place; 38 | String id; 39 | 40 | Event(dynamic doc) { 41 | title = doc['title']; 42 | } 43 | } 44 | 45 | class Track { 46 | String accentColorHex; 47 | String iconUrl; 48 | String id; 49 | String name; 50 | String textColorHex; 51 | } 52 | 53 | class Place { 54 | String id; 55 | String floor; 56 | String name; 57 | } 58 | 59 | enum Level { beginner, intermediate, advanced } 60 | 61 | class Speaker { 62 | String address; 63 | String bio; 64 | String companyName; 65 | String companyUrl; 66 | String jobDescription; 67 | String personalUrl; 68 | String phoneNumber; 69 | String twitterHandle; 70 | } 71 | -------------------------------------------------------------------------------- /lib/rootview.dart: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Chromium Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | import 'dart:async'; 6 | import 'package:flutter/cupertino.dart'; 7 | import 'package:flutter/material.dart'; 8 | import 'package:SquanchyFlutter/favourites/favourites.dart'; 9 | import 'package:SquanchyFlutter/schedule/schedule.dart'; 10 | import 'package:SquanchyFlutter/venue/venuedetails.dart'; 11 | import 'package:google_sign_in/google_sign_in.dart'; 12 | import 'package:firebase_auth/firebase_auth.dart'; 13 | 14 | class Page { 15 | BottomNavigationBarItem navItem; 16 | Function buildView; 17 | 18 | Page(T f(), BottomNavigationBarItem item) { 19 | buildView = f; 20 | navItem = item; 21 | } 22 | } 23 | 24 | final googleSignIn = new GoogleSignIn(); 25 | final auth = FirebaseAuth.instance; 26 | 27 | class RootViewPage extends StatefulWidget { 28 | RootViewPage({Key key}) : super(key: key); 29 | 30 | @override 31 | _RootViewPageState createState() => new _RootViewPageState(new GoogleSignIn(), FirebaseAuth.instance); 32 | } 33 | 34 | class _RootViewPageState extends State { 35 | _RootViewPageState(this.googleSignIn, this.firebaseAuth); 36 | 37 | final scaffoldKey = new GlobalKey(); 38 | final GoogleSignIn googleSignIn; 39 | final FirebaseAuth firebaseAuth; 40 | 41 | @override 42 | Widget build(BuildContext context) { 43 | 44 | var theme = Theme.of(context); 45 | var tabBarTextStyle = new TextStyle(color: Colors.blueAccent, fontFamily: 'Quicksand'); 46 | 47 | var scheduleItem = new BottomNavigationBarItem(icon: new Image.asset('assets/ic_schedule_selected.png'), 48 | title: new Text("Schedule", style: tabBarTextStyle)); 49 | var favouritesItem = new BottomNavigationBarItem(icon: new Image.asset('assets/ic_favourites_unselected.png'), 50 | title: new Text("Favourites", style: tabBarTextStyle)); 51 | var venueDetailsItem = new BottomNavigationBarItem(icon: new Image.asset('assets/ic_venue_unselected.png'), 52 | title: new Text("Venue Details", style: tabBarTextStyle)); 53 | 54 | var pages = [ 55 | new Page(() => new ScheduleView(), scheduleItem), 56 | new Page(() => new FavouritesView(), favouritesItem), 57 | new Page(() => new VenueDetailsView(), venueDetailsItem), 58 | ]; 59 | 60 | var tabBarItems = pages.map((page) => page.navItem).toList(); 61 | 62 | var tabBar = new CupertinoTabBar( 63 | activeColor: theme.accentIconTheme.color, 64 | inactiveColor: theme.iconTheme.color, 65 | items: tabBarItems 66 | ); 67 | 68 | _ensureLoggedIn(); 69 | 70 | return new WillPopScope( 71 | onWillPop: preventSwipePopping, 72 | child: new CupertinoTabScaffold( 73 | tabBar: tabBar, 74 | tabBuilder: (BuildContext context, int index) { 75 | return new DefaultTextStyle( 76 | style: const TextStyle( 77 | fontFamily: '.SF UI Text', 78 | fontSize: 17.0, 79 | color: Colors.blue, 80 | ), 81 | child: new CupertinoTabView( 82 | builder: (BuildContext context) { 83 | return pages[index].buildView(); 84 | }, 85 | ), 86 | ); 87 | }, 88 | ), 89 | ); 90 | } 91 | 92 | Future _ensureLoggedIn() async { 93 | await auth.signInAnonymously(); 94 | } 95 | 96 | Future preventSwipePopping() => new Future.value(true); 97 | } 98 | -------------------------------------------------------------------------------- /lib/schedule/schedule.dart: -------------------------------------------------------------------------------- 1 | import 'package:SquanchyFlutter/models/EventModels.dart'; 2 | import 'package:SquanchyFlutter/schedule/schedule_item.dart'; 3 | import 'package:SquanchyFlutter/utils/button_widgets.dart'; 4 | import 'package:cloud_firestore/cloud_firestore.dart'; 5 | import 'package:flutter/cupertino.dart'; 6 | import 'package:flutter/material.dart'; 7 | 8 | class EventList extends StatelessWidget { 9 | DefaultTabController _createTabs(BuildContext context, List days, List> events) { 10 | var theme = Theme.of(context); 11 | return new DefaultTabController( 12 | length: days.length, 13 | child: new Scaffold( 14 | appBar: new AppBar( 15 | iconTheme: theme.iconTheme, 16 | title: const Text('SCHEDULE'), 17 | backgroundColor: theme.accentColor, 18 | actions: [new SettingsButton(), new SearchButton()], 19 | bottom: new TabBar(tabs: days.map((day) => new Tab(text: day)).toList()), 20 | ), 21 | body: new TabBarView( 22 | children: events.map((day) { 23 | return _createScheduleCards(day); 24 | }).toList()), 25 | ), 26 | ); 27 | } 28 | 29 | ListView _createScheduleCards(List events) { 30 | return new ListView( 31 | children: events.map((event) { 32 | return new ListTile( 33 | title: new EventItem(event), 34 | ); 35 | }).toList(), 36 | ); 37 | } 38 | 39 | final emptyState = new Container( 40 | child: new Column( 41 | mainAxisAlignment: MainAxisAlignment.center, 42 | children: [ 43 | new Image.asset("assets/nothing_here.png"), 44 | new Padding( 45 | padding: new EdgeInsets.only(top: 8.0), 46 | child: new Text('Nothing here. Come back soon!', textAlign: TextAlign.center)) 47 | ], 48 | )); 49 | 50 | @override 51 | Widget build(BuildContext context) { 52 | var docs = Firestore.instance 53 | .collection('views') 54 | .document('schedule') 55 | .collection('schedule_pages') 56 | .getDocuments() 57 | .asStream(); 58 | 59 | return new StreamBuilder( 60 | stream: docs, 61 | builder: (BuildContext context, AsyncSnapshot snapshot) { 62 | if (!snapshot.hasData) return emptyState; 63 | var docs = snapshot.data.documents; 64 | Iterable days = docs.map((snapshot) => new EventDay(snapshot)); 65 | 66 | var eventDays = days.map((day) => _getWeekday(day.day.dateTime.weekday)).toList(); 67 | var events = days.map((day) => day.events).toList(); 68 | return _createTabs(context, eventDays, events); 69 | }, 70 | ); 71 | } 72 | 73 | String _getWeekday(int day) { 74 | switch (day) { 75 | case 0: 76 | return "Monday"; 77 | case 1: 78 | return "Tuesday"; 79 | case 2: 80 | return "Wednesday"; 81 | case 3: 82 | return "Thursday"; 83 | case 4: 84 | return "Friday"; 85 | case 5: 86 | return "Saturday"; 87 | case 6: 88 | return "Sunday"; 89 | } 90 | return ""; 91 | } 92 | } 93 | 94 | class ScheduleView extends StatelessWidget { 95 | @override 96 | Widget build(BuildContext context) { 97 | return new EventList(); 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /lib/schedule/schedule_item.dart: -------------------------------------------------------------------------------- 1 | import 'package:SquanchyFlutter/models/EventModels.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | 5 | class EventItem extends StatelessWidget { 6 | final Event event; 7 | 8 | EventItem(this.event); 9 | 10 | @override 11 | Widget build(BuildContext context) { 12 | var theme = Theme.of(context); 13 | final eventCard = new Container( 14 | decoration: new BoxDecoration( 15 | color: Colors.white, 16 | shape: BoxShape.rectangle, 17 | borderRadius: new BorderRadius.circular(8.0), 18 | ), 19 | child: new Container( 20 | margin: const EdgeInsets.only(top: 5.0, left: 5.0), 21 | constraints: new BoxConstraints.expand(), 22 | child: new Column( 23 | crossAxisAlignment: CrossAxisAlignment.start, 24 | children: [ 25 | new Row( 26 | children: [ 27 | new Column( 28 | children: [ 29 | new Container(height: 5.0), 30 | new Text("12:00", style: Theme.of(context).primaryTextTheme.title.copyWith(color: theme.accentColor)), 31 | new Container(height: 10.0), 32 | new Text("Lunch"), 33 | ] 34 | ), 35 | new Container(width: 150.0), 36 | new Center(child: new Image.asset("assets/nothing_here.png", width: 100.0, height: 40.0)), 37 | ] 38 | ) 39 | ], 40 | ) 41 | ),); 42 | 43 | return new Container( 44 | height: 80.0, 45 | child: new FlatButton( 46 | onPressed: null, 47 | child: new Stack( 48 | children: [ 49 | eventCard 50 | ], 51 | ), 52 | ), 53 | ); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /lib/squanchy_app.dart: -------------------------------------------------------------------------------- 1 | import 'package:SquanchyFlutter/rootview.dart'; 2 | import 'package:flutter/material.dart'; 3 | 4 | class SquanchyFlutterApp extends StatelessWidget { 5 | @override 6 | Widget build(BuildContext context) { 7 | final _theme = new ThemeData( 8 | primarySwatch: const MaterialColor(0XFFE65B77, const { 9 | 50: const Color(0xFFFCEBEF), 10 | 100: const Color(0xFFF8CED6), 11 | 200: const Color(0xFFF3ADBB), 12 | 300: const Color(0xFFEE8CA0), 13 | 400: const Color(0xFFEA748B), 14 | 500: const Color(0XFFE65B77), 15 | 600: const Color(0xFFE3536F), 16 | 700: const Color(0xFFDF4964), 17 | 800: const Color(0xFFDB405A), 18 | 900: const Color(0xFFD52F47), 19 | }), 20 | accentColor: const MaterialAccentColor(0xFF67B6E2, const { 21 | 100: const Color(0xFF95CCEB), 22 | 200: const Color(0xFF67B6E2), 23 | 400: const Color(0xFF5FAFDF), 24 | 700: const Color(0xFF4A9ED6), 25 | }), 26 | backgroundColor: const Color.fromRGBO(244, 244, 244, 1.0), 27 | fontFamily: "Quicksand", 28 | ); 29 | 30 | final theme = _theme.copyWith( 31 | textTheme: _theme.textTheme.copyWith( 32 | body1: _theme.textTheme.body1.copyWith( 33 | fontWeight: FontWeight.w500, 34 | color: Colors.blue, 35 | ), 36 | ), 37 | ); 38 | 39 | return new MaterialApp( 40 | theme: theme, 41 | title: 'Squanchy Flutter', 42 | home: new RootViewPage(key: key,), 43 | ); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /lib/utils/DataService.dart: -------------------------------------------------------------------------------- 1 | import 'dart:async'; 2 | 3 | import 'package:cloud_firestore/cloud_firestore.dart'; 4 | 5 | abstract class DataService { 6 | Stream getDataStream(String reference); 7 | } 8 | 9 | class FirestoreService extends DataService { 10 | final Firestore firestore; 11 | 12 | FirestoreService(this.firestore); 13 | 14 | @override 15 | Stream getDataStream(String reference) { 16 | return firestore.collection(reference).getDocuments().asStream(); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lib/utils/button_widgets.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/cupertino.dart'; 2 | 3 | class SettingsButton extends StatelessWidget { 4 | const SettingsButton(); 5 | 6 | @override 7 | Widget build(BuildContext context) { 8 | return new CupertinoButton( 9 | padding: EdgeInsets.zero, 10 | child: new Image.asset( 11 | 'assets/ic_settings.png'), onPressed: () {}, 12 | ); 13 | } 14 | } 15 | 16 | class SearchButton extends StatelessWidget { 17 | const SearchButton(); 18 | 19 | @override 20 | Widget build(BuildContext context) { 21 | return new CupertinoButton( 22 | padding: EdgeInsets.zero, 23 | child: new Image.asset( 24 | 'assets/ic_search.png'), onPressed: () {}, 25 | ); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /lib/utils/flexible_app_bar_widget.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | import 'package:flutter/rendering.dart'; 3 | 4 | import 'offscreen_widget_tree.dart'; 5 | 6 | class FlexibleAppBarBottomWidget extends StatelessWidget 7 | implements PreferredSizeWidget { 8 | FlexibleAppBarBottomWidget(this.screenSize, this.child); 9 | 10 | FlexibleAppBarBottomWidget.fromContext(BuildContext context, Widget child) 11 | : this(getScreenSize(context), child); 12 | 13 | static Size getScreenSize(BuildContext context) => 14 | MediaQuery 15 | .of(context) 16 | .size; 17 | 18 | final Widget child; 19 | final Size screenSize; 20 | 21 | @override 22 | Size get preferredSize { 23 | BuildContext savedContext; 24 | final builder = new Builder( 25 | builder: (BuildContext context) { 26 | savedContext = context; 27 | return wrapInMediaQuery(child: child); 28 | }, 29 | ); 30 | new OffscreenWidgetTree(screenSize) 31 | .pumpWidget(new Center(child: builder)); 32 | return new Size.fromHeight(savedContext.size.height); 33 | } 34 | 35 | @override 36 | Widget build(BuildContext context) => child; 37 | 38 | Widget wrapInMediaQuery({Widget child}) { 39 | return new Directionality( 40 | textDirection: TextDirection.ltr, 41 | child: new MediaQuery( 42 | data: const MediaQueryData(), 43 | child: child, 44 | ), 45 | ); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /lib/utils/offscreen_widget_tree.dart: -------------------------------------------------------------------------------- 1 | /* 2 | adapted from: 3 | https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/independent_widget_layout_test.dart 4 | */ 5 | 6 | import 'dart:ui' as ui show window; 7 | import 'dart:ui'; 8 | 9 | import 'package:flutter/material.dart'; 10 | import 'package:flutter/rendering.dart'; 11 | 12 | class OffscreenWidgetTree { 13 | OffscreenWidgetTree(Size containerSize) : renderView = new _OffscreenRenderView(containerSize, ui.window) { 14 | renderView.attach(pipelineOwner); 15 | renderView.scheduleInitialFrame(); 16 | } 17 | 18 | final RenderView renderView; 19 | final buildOwner = new BuildOwner(); 20 | final pipelineOwner = new PipelineOwner(); 21 | 22 | RenderObjectToWidgetElement root; 23 | 24 | void pumpWidget(Widget app) { 25 | root = 26 | new RenderObjectToWidgetAdapter(container: renderView, debugShortDescription: '[root]', child: app) 27 | .attachToRenderTree(buildOwner, root); 28 | pumpFrame(); 29 | } 30 | 31 | void pumpFrame() { 32 | buildOwner.buildScope(root); 33 | pipelineOwner.flushLayout(); 34 | buildOwner.finalizeTree(); 35 | } 36 | } 37 | 38 | class _OffscreenRenderView extends RenderView { 39 | _OffscreenRenderView(Size size, Window window) 40 | : super(configuration: new ViewConfiguration(size: size), window: window); 41 | 42 | @override 43 | void compositeFrame() { 44 | // Don't draw to ui.window 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /lib/venue/venuedetails.dart: -------------------------------------------------------------------------------- 1 | import 'package:SquanchyFlutter/utils/DataService.dart'; 2 | import 'package:SquanchyFlutter/utils/button_widgets.dart'; 3 | import 'package:cloud_firestore/cloud_firestore.dart'; 4 | import 'package:flutter/cupertino.dart'; 5 | import 'package:flutter/material.dart'; 6 | 7 | class VenueDetailsView extends StatelessWidget { 8 | 9 | @override 10 | Widget build(BuildContext context) 11 | { 12 | final theme = Theme.of(context); 13 | 14 | FirestoreService service = new FirestoreService(Firestore.instance); 15 | 16 | service.getDataStream('conference_info').listen( 17 | (data) => print('${data.documents[0]['name']}') 18 | ); 19 | 20 | var appBar = new AppBar( 21 | iconTheme: theme.iconTheme, 22 | title: const Text('VENUE DETAILS'), 23 | backgroundColor: theme.accentColor, 24 | actions: [ 25 | new SettingsButton(), 26 | new SearchButton() 27 | ] 28 | ); 29 | 30 | 31 | return new Scaffold( 32 | appBar: appBar, 33 | backgroundColor: theme.backgroundColor, 34 | ); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: SquanchyFlutter 2 | description: Just like Squanchy, but in Flutter. 3 | 4 | dependencies: 5 | cupertino_icons: 0.1.2 6 | flutter: 7 | sdk: flutter 8 | google_sign_in: 3.2.4 9 | firebase_analytics: 1.1.0 10 | firebase_auth: 0.7.0 11 | cloud_firestore: 0.8.2+3 12 | 13 | # For information on the generic Dart part of this file, see the 14 | # following page: https://www.dartlang.org/tools/pub/pubspec 15 | 16 | # The following section is specific to Flutter. 17 | flutter: 18 | 19 | # The following line ensures that the Material Icons font is 20 | # included with your application, so that you can use the icons in 21 | # the Icons class. 22 | uses-material-design: true 23 | 24 | # To add assets to your application, add an assets section here, in 25 | # this "flutter" section, as in: 26 | # assets: 27 | # - images/a_dot_burr.jpeg 28 | # - images/a_dot_ham.jpeg 29 | assets: 30 | - assets/ic_settings.png 31 | - assets/ic_schedule.png 32 | - assets/ic_search.png 33 | - assets/ic_favourites_unselected.png 34 | - assets/ic_schedule_unselected.png 35 | - assets/ic_venue_unselected.png 36 | - assets/ic_schedule_selected.png 37 | - assets/ic_venue_selected.png 38 | - assets/ic_favourites_selected.png 39 | - assets/nothing_here.png 40 | 41 | # To add custom fonts to your application, add a fonts section here, 42 | # in this "flutter" section. Each entry in this list should have a 43 | # "family" key with the font family name, and a "fonts" key with a 44 | # list giving the asset and other descriptors for the font. For 45 | # example: 46 | fonts: 47 | - family: League Spartan 48 | fonts: 49 | - asset: fonts/LeagueSpartan-Bold.otf 50 | weight: 700 51 | - family: Quicksand 52 | fonts: 53 | - asset: fonts/Quicksand-Light.ttf 54 | weight: 300 55 | - asset: fonts/Quicksand-Regular.ttf 56 | weight: 400 57 | - asset: fonts/Quicksand-Medium.ttf 58 | weight: 500 59 | - asset: fonts/Quicksand-Bold.ttf 60 | weight: 700 61 | --------------------------------------------------------------------------------