├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_project_boilerplate │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── 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 │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── 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-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 │ └── 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 ├── lib ├── app │ ├── app.dart │ └── di │ │ └── app_graph.dart ├── core │ ├── api │ │ ├── api.dart │ │ ├── api_client.dart │ │ ├── api_error.dart │ │ ├── api_response.dart │ │ ├── clients │ │ │ ├── auth_client.dart │ │ │ └── general_client.dart │ │ ├── general_api_client.dart │ │ ├── request │ │ │ ├── auth │ │ │ │ ├── login_request_object.dart │ │ │ │ ├── login_request_object.g.dart │ │ │ │ ├── refresh_session_request_object.dart │ │ │ │ ├── refresh_session_request_object.g.dart │ │ │ │ ├── register_device_request_object.dart │ │ │ │ ├── register_device_request_object.g.dart │ │ │ │ ├── register_request_object.dart │ │ │ │ └── register_request_object.g.dart │ │ │ └── request_object.dart │ │ └── response │ │ │ ├── auth │ │ │ ├── register_device_response.dart │ │ │ ├── register_device_response.g.dart │ │ │ ├── register_response.dart │ │ │ ├── register_response.g.dart │ │ │ ├── session_response.dart │ │ │ ├── session_response.g.dart │ │ │ ├── session_response_data.dart │ │ │ └── session_response_data.g.dart │ │ │ └── response_object.dart │ ├── controllers │ │ ├── general_controller.dart │ │ ├── kickoff_controller.dart │ │ └── session_controller.dart │ ├── di │ │ ├── injectable_widget.dart │ │ └── injector.dart │ ├── exceptions │ │ ├── api_exception.dart │ │ ├── token_expired_exception.dart │ │ ├── unexpected_exception.dart │ │ └── user_friendly_exception.dart │ ├── logging │ │ ├── console.dart │ │ ├── logger.dart │ │ └── logging_level.dart │ ├── models │ │ ├── user.dart │ │ └── user.g.dart │ ├── navigation │ │ └── navigation_destinations.dart │ ├── redux │ │ ├── action_mapper.dart │ │ ├── actions │ │ │ ├── authentication │ │ │ │ └── authentication_actions.dart │ │ │ └── navigation │ │ │ │ └── navigation_actions.dart │ │ ├── middlewares │ │ │ ├── authentication_middleware.dart │ │ │ └── navigation_middleware.dart │ │ ├── reducers │ │ │ ├── auth_reducers.dart │ │ │ └── reducer.dart │ │ ├── states │ │ │ ├── app_state │ │ │ │ ├── app_state.dart │ │ │ │ └── app_state.g.dart │ │ │ └── auth │ │ │ │ ├── auth_state.dart │ │ │ │ └── auth_state.g.dart │ │ └── store.dart │ ├── strings │ │ └── strings.dart │ └── utils │ │ └── constants.dart ├── environment_config.dart ├── main_prod.dart ├── main_staging.dart └── ui │ ├── components │ ├── button.dart │ ├── primary_button.dart │ ├── text_field.dart │ └── white_button.dart │ ├── domain │ ├── auth │ │ ├── forgot_password_page │ │ │ ├── di │ │ │ │ └── forgot_password_page_graph.dart │ │ │ ├── forgot_password_page.dart │ │ │ └── forgot_password_page_action_mapper.dart │ │ ├── login_page │ │ │ ├── di │ │ │ │ └── login_page_graph.dart │ │ │ ├── login_page.dart │ │ │ └── login_page_action_mapper.dart │ │ └── register_page │ │ │ ├── di │ │ │ └── register_page_graph.dart │ │ │ ├── register_page.dart │ │ │ └── register_page_action_mapper.dart │ └── home │ │ └── welcome_page │ │ ├── di │ │ └── welcome_page_graph.dart │ │ ├── welcome_page.dart │ │ └── welcome_page_action_mapper.dart │ ├── modals │ ├── feature_not_available_dialog │ │ └── feature_not_available_dialog.dart │ ├── general_failed_dialog │ │ ├── di │ │ │ └── general_failed_dialog_graph.dart │ │ └── general_failed_dialog.dart │ ├── general_prompt_dialog │ │ ├── di │ │ │ └── general_prompt_dialog_graph.dart │ │ └── general_prompt_dialog.dart │ ├── general_success_dialog │ │ ├── di │ │ │ └── general_success_dialog_graph.dart │ │ └── general_success_dialog.dart │ ├── loading_dialog │ │ ├── di │ │ │ └── loading_dialog_graph.dart │ │ └── loading_dialog.dart │ └── logout_dialog │ │ └── logout_dialog.dart │ └── utils │ ├── app_text_theme.dart │ ├── color_palette.dart │ └── widget_utils.dart ├── pubspec.lock ├── pubspec.yaml ├── res ├── fonts │ └── nunito │ │ ├── NunitoSans-Black.ttf │ │ ├── NunitoSans-BlackItalic.ttf │ │ ├── NunitoSans-Bold.ttf │ │ ├── NunitoSans-BoldItalic.ttf │ │ ├── NunitoSans-ExtraBold.ttf │ │ ├── NunitoSans-ExtraBoldItalic.ttf │ │ ├── NunitoSans-ExtraLight.ttf │ │ ├── NunitoSans-ExtraLightItalic.ttf │ │ ├── NunitoSans-Italic.ttf │ │ ├── NunitoSans-Light.ttf │ │ ├── NunitoSans-LightItalic.ttf │ │ ├── NunitoSans-Regular.ttf │ │ ├── NunitoSans-SemiBold.ttf │ │ ├── NunitoSans-SemiBoldItalic.ttf │ │ └── OFL.txt └── images │ └── welcome_image.webp └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_project_boilerplate/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/app/src/main/kotlin/com/example/flutter_project_boilerplate/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/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/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/app/di/app_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/app/di/app_graph.dart -------------------------------------------------------------------------------- /lib/core/api/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/api.dart -------------------------------------------------------------------------------- /lib/core/api/api_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/api_client.dart -------------------------------------------------------------------------------- /lib/core/api/api_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/api_error.dart -------------------------------------------------------------------------------- /lib/core/api/api_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/api_response.dart -------------------------------------------------------------------------------- /lib/core/api/clients/auth_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/clients/auth_client.dart -------------------------------------------------------------------------------- /lib/core/api/clients/general_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/clients/general_client.dart -------------------------------------------------------------------------------- /lib/core/api/general_api_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/general_api_client.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/login_request_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/login_request_object.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/login_request_object.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/login_request_object.g.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/refresh_session_request_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/refresh_session_request_object.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/refresh_session_request_object.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/refresh_session_request_object.g.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/register_device_request_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/register_device_request_object.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/register_device_request_object.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/register_device_request_object.g.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/register_request_object.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/register_request_object.dart -------------------------------------------------------------------------------- /lib/core/api/request/auth/register_request_object.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/request/auth/register_request_object.g.dart -------------------------------------------------------------------------------- /lib/core/api/request/request_object.dart: -------------------------------------------------------------------------------- 1 | abstract class RequestObject { 2 | Map getJsonBody(); 3 | } 4 | -------------------------------------------------------------------------------- /lib/core/api/response/auth/register_device_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/register_device_response.dart -------------------------------------------------------------------------------- /lib/core/api/response/auth/register_device_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/register_device_response.g.dart -------------------------------------------------------------------------------- /lib/core/api/response/auth/register_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/register_response.dart -------------------------------------------------------------------------------- /lib/core/api/response/auth/register_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/register_response.g.dart -------------------------------------------------------------------------------- /lib/core/api/response/auth/session_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/session_response.dart -------------------------------------------------------------------------------- /lib/core/api/response/auth/session_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/session_response.g.dart -------------------------------------------------------------------------------- /lib/core/api/response/auth/session_response_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/session_response_data.dart -------------------------------------------------------------------------------- /lib/core/api/response/auth/session_response_data.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/api/response/auth/session_response_data.g.dart -------------------------------------------------------------------------------- /lib/core/api/response/response_object.dart: -------------------------------------------------------------------------------- 1 | abstract class ResponseObject {} -------------------------------------------------------------------------------- /lib/core/controllers/general_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/controllers/general_controller.dart -------------------------------------------------------------------------------- /lib/core/controllers/kickoff_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/controllers/kickoff_controller.dart -------------------------------------------------------------------------------- /lib/core/controllers/session_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/controllers/session_controller.dart -------------------------------------------------------------------------------- /lib/core/di/injectable_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/di/injectable_widget.dart -------------------------------------------------------------------------------- /lib/core/di/injector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/di/injector.dart -------------------------------------------------------------------------------- /lib/core/exceptions/api_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/exceptions/api_exception.dart -------------------------------------------------------------------------------- /lib/core/exceptions/token_expired_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/exceptions/token_expired_exception.dart -------------------------------------------------------------------------------- /lib/core/exceptions/unexpected_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/exceptions/unexpected_exception.dart -------------------------------------------------------------------------------- /lib/core/exceptions/user_friendly_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/exceptions/user_friendly_exception.dart -------------------------------------------------------------------------------- /lib/core/logging/console.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/logging/console.dart -------------------------------------------------------------------------------- /lib/core/logging/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/logging/logger.dart -------------------------------------------------------------------------------- /lib/core/logging/logging_level.dart: -------------------------------------------------------------------------------- 1 | enum LoggingLevel { verbose, info, warning, error } -------------------------------------------------------------------------------- /lib/core/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/models/user.dart -------------------------------------------------------------------------------- /lib/core/models/user.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/models/user.g.dart -------------------------------------------------------------------------------- /lib/core/navigation/navigation_destinations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/navigation/navigation_destinations.dart -------------------------------------------------------------------------------- /lib/core/redux/action_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/action_mapper.dart -------------------------------------------------------------------------------- /lib/core/redux/actions/authentication/authentication_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/actions/authentication/authentication_actions.dart -------------------------------------------------------------------------------- /lib/core/redux/actions/navigation/navigation_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/actions/navigation/navigation_actions.dart -------------------------------------------------------------------------------- /lib/core/redux/middlewares/authentication_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/middlewares/authentication_middleware.dart -------------------------------------------------------------------------------- /lib/core/redux/middlewares/navigation_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/middlewares/navigation_middleware.dart -------------------------------------------------------------------------------- /lib/core/redux/reducers/auth_reducers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/reducers/auth_reducers.dart -------------------------------------------------------------------------------- /lib/core/redux/reducers/reducer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/reducers/reducer.dart -------------------------------------------------------------------------------- /lib/core/redux/states/app_state/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/states/app_state/app_state.dart -------------------------------------------------------------------------------- /lib/core/redux/states/app_state/app_state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/states/app_state/app_state.g.dart -------------------------------------------------------------------------------- /lib/core/redux/states/auth/auth_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/states/auth/auth_state.dart -------------------------------------------------------------------------------- /lib/core/redux/states/auth/auth_state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/states/auth/auth_state.g.dart -------------------------------------------------------------------------------- /lib/core/redux/store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/redux/store.dart -------------------------------------------------------------------------------- /lib/core/strings/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/strings/strings.dart -------------------------------------------------------------------------------- /lib/core/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/core/utils/constants.dart -------------------------------------------------------------------------------- /lib/environment_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/environment_config.dart -------------------------------------------------------------------------------- /lib/main_prod.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/main_prod.dart -------------------------------------------------------------------------------- /lib/main_staging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/main_staging.dart -------------------------------------------------------------------------------- /lib/ui/components/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/components/button.dart -------------------------------------------------------------------------------- /lib/ui/components/primary_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/components/primary_button.dart -------------------------------------------------------------------------------- /lib/ui/components/text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/components/text_field.dart -------------------------------------------------------------------------------- /lib/ui/components/white_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/components/white_button.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/forgot_password_page/di/forgot_password_page_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/forgot_password_page/di/forgot_password_page_graph.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/forgot_password_page/forgot_password_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/forgot_password_page/forgot_password_page.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/forgot_password_page/forgot_password_page_action_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/forgot_password_page/forgot_password_page_action_mapper.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/login_page/di/login_page_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/login_page/di/login_page_graph.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/login_page/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/login_page/login_page.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/login_page/login_page_action_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/login_page/login_page_action_mapper.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/register_page/di/register_page_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/register_page/di/register_page_graph.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/register_page/register_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/register_page/register_page.dart -------------------------------------------------------------------------------- /lib/ui/domain/auth/register_page/register_page_action_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/auth/register_page/register_page_action_mapper.dart -------------------------------------------------------------------------------- /lib/ui/domain/home/welcome_page/di/welcome_page_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/home/welcome_page/di/welcome_page_graph.dart -------------------------------------------------------------------------------- /lib/ui/domain/home/welcome_page/welcome_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/home/welcome_page/welcome_page.dart -------------------------------------------------------------------------------- /lib/ui/domain/home/welcome_page/welcome_page_action_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/domain/home/welcome_page/welcome_page_action_mapper.dart -------------------------------------------------------------------------------- /lib/ui/modals/feature_not_available_dialog/feature_not_available_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/feature_not_available_dialog/feature_not_available_dialog.dart -------------------------------------------------------------------------------- /lib/ui/modals/general_failed_dialog/di/general_failed_dialog_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/general_failed_dialog/di/general_failed_dialog_graph.dart -------------------------------------------------------------------------------- /lib/ui/modals/general_failed_dialog/general_failed_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/general_failed_dialog/general_failed_dialog.dart -------------------------------------------------------------------------------- /lib/ui/modals/general_prompt_dialog/di/general_prompt_dialog_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/general_prompt_dialog/di/general_prompt_dialog_graph.dart -------------------------------------------------------------------------------- /lib/ui/modals/general_prompt_dialog/general_prompt_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/general_prompt_dialog/general_prompt_dialog.dart -------------------------------------------------------------------------------- /lib/ui/modals/general_success_dialog/di/general_success_dialog_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/general_success_dialog/di/general_success_dialog_graph.dart -------------------------------------------------------------------------------- /lib/ui/modals/general_success_dialog/general_success_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/general_success_dialog/general_success_dialog.dart -------------------------------------------------------------------------------- /lib/ui/modals/loading_dialog/di/loading_dialog_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/loading_dialog/di/loading_dialog_graph.dart -------------------------------------------------------------------------------- /lib/ui/modals/loading_dialog/loading_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/loading_dialog/loading_dialog.dart -------------------------------------------------------------------------------- /lib/ui/modals/logout_dialog/logout_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/modals/logout_dialog/logout_dialog.dart -------------------------------------------------------------------------------- /lib/ui/utils/app_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/utils/app_text_theme.dart -------------------------------------------------------------------------------- /lib/ui/utils/color_palette.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/utils/color_palette.dart -------------------------------------------------------------------------------- /lib/ui/utils/widget_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/lib/ui/utils/widget_utils.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-Black.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-BlackItalic.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-Bold.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-ExtraBold.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-ExtraLight.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-Italic.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-Light.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-LightItalic.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-Regular.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-SemiBold.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/NunitoSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/NunitoSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /res/fonts/nunito/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/fonts/nunito/OFL.txt -------------------------------------------------------------------------------- /res/images/welcome_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/res/images/welcome_image.webp -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmenthor/flutter_project_boilerplate/HEAD/test/widget_test.dart --------------------------------------------------------------------------------