├── .gitignore ├── README.md ├── android.iml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── com │ │ │ └── mythichelm │ │ │ └── gametime │ │ │ └── MainActivity.kt │ │ └── 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 └── settings.gradle ├── assets ├── fonts │ ├── CaviarDreams.ttf │ ├── Muli-Regular.ttf │ ├── NanumPenScript-Regular.ttf │ ├── Poppins-Regular.ttf │ └── Poppins-SemiBold.ttf └── img │ └── placeholder.png ├── gametime.iml ├── gametime_android.iml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-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 │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── gametime.dart ├── main.dart └── src │ ├── App │ ├── app.dart │ └── themes.dart │ ├── Components │ ├── activity_heat_map.dart │ ├── add_remove_fab.dart │ ├── app_life_cycle_watcher.dart │ ├── card_horizontal_scrollable_media.dart │ ├── confirmation_dialog.dart │ ├── custom_toggle_button.dart │ ├── game_detail_bottom_bar.dart │ ├── game_detail_fab_dial.dart │ ├── game_detail_screenshots_card.dart │ ├── game_grid.dart │ ├── game_image.dart │ ├── grow_on_click_widget.dart │ ├── horizontal_chip_list.dart │ ├── note_card.dart │ ├── paginated_infinite_scroll_view.dart │ ├── query_result.dart │ ├── radio_button_list.dart │ ├── recent_game_card.dart │ ├── recent_game_list.dart │ ├── release_date_card.dart │ ├── release_date_chip_list.dart │ ├── session_card.dart │ └── text_card.dart │ ├── Models │ ├── activity.dart │ ├── game_model.dart │ ├── note.dart │ ├── query.dart │ └── session.dart │ ├── Pages │ ├── activity_page.dart │ ├── add_note_page.dart │ ├── browse_page.dart │ ├── collection_page.dart │ ├── details_page.dart │ ├── edit_query_page.dart │ ├── feed_page.dart │ ├── game_info_tab.dart │ ├── game_notes_tab.dart │ ├── game_sessions_tab.dart │ ├── game_stats_tab.dart │ ├── home_page.dart │ ├── login_page.dart │ ├── main_container.dart │ ├── search_page.dart │ └── settings_page.dart │ ├── Redux │ ├── actions.dart │ ├── app_state.dart │ ├── firebase_middleware.dart │ ├── logger_middleware.dart │ └── reducers.dart │ ├── Services │ ├── firebase_models.dart │ ├── game_service_client.dart │ ├── google_calendar_client.dart │ └── google_http_client.dart │ └── Utils │ ├── asset_helper.dart │ ├── datetime_helper.dart │ └── notification_helper.dart ├── pubspec.yaml └── screenshots ├── activity_page.png ├── collection_page.png ├── details_page.png ├── details_page_screenshot.png └── feed_page.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/README.md -------------------------------------------------------------------------------- /android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android.iml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/mythichelm/gametime/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/src/main/kotlin/com/mythichelm/gametime/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/CaviarDreams.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/assets/fonts/CaviarDreams.ttf -------------------------------------------------------------------------------- /assets/fonts/Muli-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/assets/fonts/Muli-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/NanumPenScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/assets/fonts/NanumPenScript-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /assets/img/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/assets/img/placeholder.png -------------------------------------------------------------------------------- /gametime.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/gametime.iml -------------------------------------------------------------------------------- /gametime_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/gametime_android.iml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/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/mitchhymel/gametime-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/gametime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/gametime.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/App/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/App/app.dart -------------------------------------------------------------------------------- /lib/src/App/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/App/themes.dart -------------------------------------------------------------------------------- /lib/src/Components/activity_heat_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/activity_heat_map.dart -------------------------------------------------------------------------------- /lib/src/Components/add_remove_fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/add_remove_fab.dart -------------------------------------------------------------------------------- /lib/src/Components/app_life_cycle_watcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/app_life_cycle_watcher.dart -------------------------------------------------------------------------------- /lib/src/Components/card_horizontal_scrollable_media.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/card_horizontal_scrollable_media.dart -------------------------------------------------------------------------------- /lib/src/Components/confirmation_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/confirmation_dialog.dart -------------------------------------------------------------------------------- /lib/src/Components/custom_toggle_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/custom_toggle_button.dart -------------------------------------------------------------------------------- /lib/src/Components/game_detail_bottom_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/game_detail_bottom_bar.dart -------------------------------------------------------------------------------- /lib/src/Components/game_detail_fab_dial.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/game_detail_fab_dial.dart -------------------------------------------------------------------------------- /lib/src/Components/game_detail_screenshots_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/game_detail_screenshots_card.dart -------------------------------------------------------------------------------- /lib/src/Components/game_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/game_grid.dart -------------------------------------------------------------------------------- /lib/src/Components/game_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/game_image.dart -------------------------------------------------------------------------------- /lib/src/Components/grow_on_click_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/grow_on_click_widget.dart -------------------------------------------------------------------------------- /lib/src/Components/horizontal_chip_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/horizontal_chip_list.dart -------------------------------------------------------------------------------- /lib/src/Components/note_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/note_card.dart -------------------------------------------------------------------------------- /lib/src/Components/paginated_infinite_scroll_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/paginated_infinite_scroll_view.dart -------------------------------------------------------------------------------- /lib/src/Components/query_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/query_result.dart -------------------------------------------------------------------------------- /lib/src/Components/radio_button_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/radio_button_list.dart -------------------------------------------------------------------------------- /lib/src/Components/recent_game_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/recent_game_card.dart -------------------------------------------------------------------------------- /lib/src/Components/recent_game_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/recent_game_list.dart -------------------------------------------------------------------------------- /lib/src/Components/release_date_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/release_date_card.dart -------------------------------------------------------------------------------- /lib/src/Components/release_date_chip_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/release_date_chip_list.dart -------------------------------------------------------------------------------- /lib/src/Components/session_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/session_card.dart -------------------------------------------------------------------------------- /lib/src/Components/text_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Components/text_card.dart -------------------------------------------------------------------------------- /lib/src/Models/activity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Models/activity.dart -------------------------------------------------------------------------------- /lib/src/Models/game_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Models/game_model.dart -------------------------------------------------------------------------------- /lib/src/Models/note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Models/note.dart -------------------------------------------------------------------------------- /lib/src/Models/query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Models/query.dart -------------------------------------------------------------------------------- /lib/src/Models/session.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Models/session.dart -------------------------------------------------------------------------------- /lib/src/Pages/activity_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/activity_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/add_note_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/add_note_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/browse_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/browse_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/collection_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/collection_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/details_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/details_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/edit_query_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/edit_query_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/feed_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/feed_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/game_info_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/game_info_tab.dart -------------------------------------------------------------------------------- /lib/src/Pages/game_notes_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/game_notes_tab.dart -------------------------------------------------------------------------------- /lib/src/Pages/game_sessions_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/game_sessions_tab.dart -------------------------------------------------------------------------------- /lib/src/Pages/game_stats_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/game_stats_tab.dart -------------------------------------------------------------------------------- /lib/src/Pages/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/home_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/login_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/main_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/main_container.dart -------------------------------------------------------------------------------- /lib/src/Pages/search_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/search_page.dart -------------------------------------------------------------------------------- /lib/src/Pages/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Pages/settings_page.dart -------------------------------------------------------------------------------- /lib/src/Redux/actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Redux/actions.dart -------------------------------------------------------------------------------- /lib/src/Redux/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Redux/app_state.dart -------------------------------------------------------------------------------- /lib/src/Redux/firebase_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Redux/firebase_middleware.dart -------------------------------------------------------------------------------- /lib/src/Redux/logger_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Redux/logger_middleware.dart -------------------------------------------------------------------------------- /lib/src/Redux/reducers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Redux/reducers.dart -------------------------------------------------------------------------------- /lib/src/Services/firebase_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Services/firebase_models.dart -------------------------------------------------------------------------------- /lib/src/Services/game_service_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Services/game_service_client.dart -------------------------------------------------------------------------------- /lib/src/Services/google_calendar_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Services/google_calendar_client.dart -------------------------------------------------------------------------------- /lib/src/Services/google_http_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Services/google_http_client.dart -------------------------------------------------------------------------------- /lib/src/Utils/asset_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Utils/asset_helper.dart -------------------------------------------------------------------------------- /lib/src/Utils/datetime_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Utils/datetime_helper.dart -------------------------------------------------------------------------------- /lib/src/Utils/notification_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/lib/src/Utils/notification_helper.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/activity_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/screenshots/activity_page.png -------------------------------------------------------------------------------- /screenshots/collection_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/screenshots/collection_page.png -------------------------------------------------------------------------------- /screenshots/details_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/screenshots/details_page.png -------------------------------------------------------------------------------- /screenshots/details_page_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/screenshots/details_page_screenshot.png -------------------------------------------------------------------------------- /screenshots/feed_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/gametime-flutter/HEAD/screenshots/feed_page.png --------------------------------------------------------------------------------