├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── sesimiduy │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── docs │ └── kvkk.pdf ├── icons │ ├── ic_car_help.png │ └── ic_map_help.png └── translations │ ├── en.json │ └── tr.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Gemfile ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-50x50@1x.png │ │ │ ├── Icon-App-50x50@2x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── fastlane │ ├── Appfile │ ├── Fastfile │ ├── README.md │ └── report.xml ├── lib ├── core │ └── init │ │ └── core_localize.dart ├── features │ ├── home │ │ ├── provider │ │ │ └── home_provider.dart │ │ └── view │ │ │ └── home_view.dart │ └── login │ │ └── service │ │ └── firebase_service.dart ├── main.dart └── product │ ├── app_builder.dart │ ├── decoration │ └── product_text_field_decoration.dart │ ├── generated │ └── assets.gen.dart │ ├── init │ ├── application_init.dart │ └── language │ │ └── locale_keys.g.dart │ ├── items │ └── colors_custom.dart │ ├── model │ └── base │ │ ├── base_firebase_model.dart │ │ └── base_model.dart │ ├── utility │ ├── constants │ │ ├── app_constants.dart │ │ ├── regex_types.dart │ │ └── string_constants.dart │ ├── decorations │ │ ├── empty_box.dart │ │ └── style │ │ │ ├── bold_outline_style.dart │ │ │ └── button_rectangle_border.dart │ ├── firebase │ │ ├── collection_enums.dart │ │ ├── geo_parser.dart │ │ ├── index.dart │ │ └── time_parser.dart │ ├── mixin │ │ ├── app_provider_mixin.dart │ │ └── loading_state_mixin.dart │ ├── padding │ │ └── page_padding.dart │ ├── size │ │ ├── icon_size.dart │ │ ├── index.dart │ │ ├── widget_custom_size.dart │ │ └── widget_size.dart │ ├── state │ │ └── app_provider.dart │ └── validator │ │ └── validator_items.dart │ └── widget │ ├── builder │ └── responsive_builder.dart │ ├── button │ ├── active_button.dart │ └── social_media_button.dart │ ├── checkbox │ ├── info_checkbox.dart │ ├── kvkk_checkbox.dart │ └── product_checkbox.dart │ ├── combo_box │ ├── labeled_product_combo_box.dart │ └── product_combo_box.dart │ ├── custom_single_child_scroll.dart │ ├── padding │ └── padding_normal_button.dart │ ├── spacer │ ├── dynamic_horizontal_spacer.dart │ └── dynamic_vertical_spacer.dart │ ├── text │ ├── button_large_text.dart │ ├── button_normal_text.dart │ └── index.dart │ └── text_field │ ├── index.dart │ ├── labeled_product_textfield.dart │ └── product_textfield.dart ├── license.md ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── firebase_app_id_file.json ├── pubspec.yaml ├── scripts ├── andorid_build.sh ├── build.sh ├── deep_clean.sh ├── icon.sh ├── install-arm.sh ├── lang.sh ├── pod-install-arm.sh └── pod-update-arm.sh ├── test └── widget_test.dart ├── web ├── favicon.ico ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/sesimiduy/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/kotlin/com/example/sesimiduy/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/docs/kvkk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/assets/docs/kvkk.pdf -------------------------------------------------------------------------------- /assets/icons/ic_car_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/assets/icons/ic_car_help.png -------------------------------------------------------------------------------- /assets/icons/ic_map_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/assets/icons/ic_map_help.png -------------------------------------------------------------------------------- /assets/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/assets/translations/en.json -------------------------------------------------------------------------------- /assets/translations/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "hello": "Merhaba" 3 | } 4 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/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/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/fastlane/Appfile -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/fastlane/README.md -------------------------------------------------------------------------------- /ios/fastlane/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/ios/fastlane/report.xml -------------------------------------------------------------------------------- /lib/core/init/core_localize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/core/init/core_localize.dart -------------------------------------------------------------------------------- /lib/features/home/provider/home_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/features/home/provider/home_provider.dart -------------------------------------------------------------------------------- /lib/features/home/view/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/features/home/view/home_view.dart -------------------------------------------------------------------------------- /lib/features/login/service/firebase_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/features/login/service/firebase_service.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/product/app_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/app_builder.dart -------------------------------------------------------------------------------- /lib/product/decoration/product_text_field_decoration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/decoration/product_text_field_decoration.dart -------------------------------------------------------------------------------- /lib/product/generated/assets.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/generated/assets.gen.dart -------------------------------------------------------------------------------- /lib/product/init/application_init.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/init/application_init.dart -------------------------------------------------------------------------------- /lib/product/init/language/locale_keys.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/init/language/locale_keys.g.dart -------------------------------------------------------------------------------- /lib/product/items/colors_custom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/items/colors_custom.dart -------------------------------------------------------------------------------- /lib/product/model/base/base_firebase_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/model/base/base_firebase_model.dart -------------------------------------------------------------------------------- /lib/product/model/base/base_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/model/base/base_model.dart -------------------------------------------------------------------------------- /lib/product/utility/constants/app_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/constants/app_constants.dart -------------------------------------------------------------------------------- /lib/product/utility/constants/regex_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/constants/regex_types.dart -------------------------------------------------------------------------------- /lib/product/utility/constants/string_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/constants/string_constants.dart -------------------------------------------------------------------------------- /lib/product/utility/decorations/empty_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/decorations/empty_box.dart -------------------------------------------------------------------------------- /lib/product/utility/decorations/style/bold_outline_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/decorations/style/bold_outline_style.dart -------------------------------------------------------------------------------- /lib/product/utility/decorations/style/button_rectangle_border.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/decorations/style/button_rectangle_border.dart -------------------------------------------------------------------------------- /lib/product/utility/firebase/collection_enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/firebase/collection_enums.dart -------------------------------------------------------------------------------- /lib/product/utility/firebase/geo_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/firebase/geo_parser.dart -------------------------------------------------------------------------------- /lib/product/utility/firebase/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/firebase/index.dart -------------------------------------------------------------------------------- /lib/product/utility/firebase/time_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/firebase/time_parser.dart -------------------------------------------------------------------------------- /lib/product/utility/mixin/app_provider_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/mixin/app_provider_mixin.dart -------------------------------------------------------------------------------- /lib/product/utility/mixin/loading_state_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/mixin/loading_state_mixin.dart -------------------------------------------------------------------------------- /lib/product/utility/padding/page_padding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/padding/page_padding.dart -------------------------------------------------------------------------------- /lib/product/utility/size/icon_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/size/icon_size.dart -------------------------------------------------------------------------------- /lib/product/utility/size/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/size/index.dart -------------------------------------------------------------------------------- /lib/product/utility/size/widget_custom_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/size/widget_custom_size.dart -------------------------------------------------------------------------------- /lib/product/utility/size/widget_size.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/size/widget_size.dart -------------------------------------------------------------------------------- /lib/product/utility/state/app_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/state/app_provider.dart -------------------------------------------------------------------------------- /lib/product/utility/validator/validator_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/utility/validator/validator_items.dart -------------------------------------------------------------------------------- /lib/product/widget/builder/responsive_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/builder/responsive_builder.dart -------------------------------------------------------------------------------- /lib/product/widget/button/active_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/button/active_button.dart -------------------------------------------------------------------------------- /lib/product/widget/button/social_media_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/button/social_media_button.dart -------------------------------------------------------------------------------- /lib/product/widget/checkbox/info_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/checkbox/info_checkbox.dart -------------------------------------------------------------------------------- /lib/product/widget/checkbox/kvkk_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/checkbox/kvkk_checkbox.dart -------------------------------------------------------------------------------- /lib/product/widget/checkbox/product_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/checkbox/product_checkbox.dart -------------------------------------------------------------------------------- /lib/product/widget/combo_box/labeled_product_combo_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/combo_box/labeled_product_combo_box.dart -------------------------------------------------------------------------------- /lib/product/widget/combo_box/product_combo_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/combo_box/product_combo_box.dart -------------------------------------------------------------------------------- /lib/product/widget/custom_single_child_scroll.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/custom_single_child_scroll.dart -------------------------------------------------------------------------------- /lib/product/widget/padding/padding_normal_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/padding/padding_normal_button.dart -------------------------------------------------------------------------------- /lib/product/widget/spacer/dynamic_horizontal_spacer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/spacer/dynamic_horizontal_spacer.dart -------------------------------------------------------------------------------- /lib/product/widget/spacer/dynamic_vertical_spacer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/spacer/dynamic_vertical_spacer.dart -------------------------------------------------------------------------------- /lib/product/widget/text/button_large_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/text/button_large_text.dart -------------------------------------------------------------------------------- /lib/product/widget/text/button_normal_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/text/button_normal_text.dart -------------------------------------------------------------------------------- /lib/product/widget/text/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/text/index.dart -------------------------------------------------------------------------------- /lib/product/widget/text_field/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/text_field/index.dart -------------------------------------------------------------------------------- /lib/product/widget/text_field/labeled_product_textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/text_field/labeled_product_textfield.dart -------------------------------------------------------------------------------- /lib/product/widget/text_field/product_textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/lib/product/widget/text_field/product_textfield.dart -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/license.md -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/macos/firebase_app_id_file.json -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /scripts/andorid_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/scripts/andorid_build.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/deep_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/scripts/deep_clean.sh -------------------------------------------------------------------------------- /scripts/icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/scripts/icon.sh -------------------------------------------------------------------------------- /scripts/install-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/scripts/install-arm.sh -------------------------------------------------------------------------------- /scripts/lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/scripts/lang.sh -------------------------------------------------------------------------------- /scripts/pod-install-arm.sh: -------------------------------------------------------------------------------- 1 | cd ios 2 | arch -x86_64 pod install 3 | cd .. -------------------------------------------------------------------------------- /scripts/pod-update-arm.sh: -------------------------------------------------------------------------------- 1 | arch -x86_64 pod update -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/flutter_base_firebase_riverpod/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------