├── .DS_Store ├── .dart_tool ├── package_config.json ├── package_config_subset └── version ├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_project │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── 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-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── coverage └── lcov.info ├── coverage_badge.svg ├── folder_structure.md ├── gencov.sh ├── git.sh ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 ├── configs │ └── app_configs.dart ├── features │ ├── authentication │ │ ├── data │ │ │ ├── datasource │ │ │ │ ├── auth_local_data_source.dart │ │ │ │ └── auth_remote_data_source.dart │ │ │ └── repositories │ │ │ │ └── authentication_repository_impl.dart │ │ ├── domain │ │ │ ├── providers │ │ │ │ └── login_provider.dart │ │ │ └── repositories │ │ │ │ └── auth_repository.dart │ │ └── presentation │ │ │ ├── providers │ │ │ ├── auth_providers.dart │ │ │ └── state │ │ │ │ ├── auth_notifier.dart │ │ │ │ ├── auth_state.dart │ │ │ │ └── auth_state.freezed.dart │ │ │ ├── screens │ │ │ └── login_screen.dart │ │ │ └── widgets │ │ │ ├── auth_field.dart │ │ │ └── button.dart │ ├── dashboard │ │ ├── data │ │ │ ├── datasource │ │ │ │ ├── dashboard_local_datasource.dart │ │ │ │ └── dashboard_remote_datasource.dart │ │ │ └── repositories │ │ │ │ └── dashboard_repository.dart │ │ ├── domain │ │ │ ├── providers │ │ │ │ └── dashboard_providers.dart │ │ │ └── repositories │ │ │ │ └── dashboard_repository.dart │ │ └── presentation │ │ │ ├── providers │ │ │ ├── dashboard_state_provider.dart │ │ │ └── state │ │ │ │ ├── dashboard_notifier.dart │ │ │ │ └── dashboard_state.dart │ │ │ ├── screens │ │ │ └── dashboard_screen.dart │ │ │ └── widgets │ │ │ └── dashboard_drawer.dart │ └── splash │ │ ├── data │ │ └── .gitkeep │ │ ├── domain │ │ └── .gitkeep │ │ └── presentation │ │ ├── providers │ │ └── splash_provider.dart │ │ └── screens │ │ └── splash_screen.dart ├── main.dart ├── main │ ├── app.dart │ ├── app_env.dart │ ├── main_dev.dart │ ├── main_staging.dart │ └── observers.dart ├── routes │ ├── app_route.dart │ └── app_route.gr.dart ├── services │ └── user_cache_service │ │ ├── data │ │ ├── datasource │ │ │ └── user_local_datasource.dart │ │ └── repositories │ │ │ └── user_repository_impl.dart │ │ ├── domain │ │ ├── providers │ │ │ ├── current_user_provider.dart │ │ │ └── user_cache_provider.dart │ │ └── repositories │ │ │ └── user_cache_repository.dart │ │ └── presentation │ │ └── .gitkeep └── shared │ ├── data │ ├── local │ │ ├── shared_prefs_storage_service.dart │ │ └── storage_service.dart │ └── remote │ │ ├── dio_network_service.dart │ │ ├── network_service.dart │ │ └── remote.dart │ ├── domain │ ├── models │ │ ├── either.dart │ │ ├── models.dart │ │ ├── paginated_response.dart │ │ ├── parse_response.dart │ │ ├── product │ │ │ ├── product_model.dart │ │ │ ├── product_model.freezed.dart │ │ │ └── product_model.g.dart │ │ ├── response.dart │ │ └── user │ │ │ └── user_model.dart │ └── providers │ │ ├── dio_network_service_provider.dart │ │ └── shared_preferences_storage_service_provider.dart │ ├── exceptions │ └── http_exception.dart │ ├── globals.dart │ ├── mixins │ └── exception_handler_mixin.dart │ ├── theme │ ├── app_colors.dart │ ├── app_theme.dart │ ├── test_styles.dart │ └── text_theme.dart │ └── widgets │ ├── app_error.dart │ └── app_loading.dart ├── pubspec.lock ├── pubspec.yaml └── test ├── features ├── authentication │ ├── data │ │ ├── datasource │ │ │ ├── auth_local_data_source_test.dart │ │ │ └── auth_remote_data_source_test.dart │ │ └── repositories │ │ │ └── atuhentication_repository_impl_test.dart │ ├── domain │ │ ├── providers │ │ │ └── providers_test.dart │ │ └── repositories │ │ │ └── .gitkeep │ └── presentation │ │ ├── providers │ │ └── auth_providers_test.dart │ │ └── screens │ │ └── .gitkeep └── dashboard │ ├── data │ ├── datasource │ │ ├── dashboard_local_datasource_test.dart │ │ └── dashboard_remote_datasource_test.dart │ └── repositories │ │ └── dashboard_repository_test.dart │ ├── domain │ ├── providers │ │ └── dashboard_provider_test.dart │ └── repositories │ │ └── .gitkeep │ └── presentation │ └── providers │ ├── dashboard_provider_test.dart │ └── state │ └── dashboard_state_test.dart ├── fixtures ├── dashboard │ └── dummy_productlist.dart ├── data │ ├── product_response.dart │ └── user_map.dart ├── dummy_data.dart ├── test_fixture.dart └── user_response.json ├── services └── user_cache_service │ ├── data │ ├── datasource │ │ └── user_local_datasource_test.dart │ └── repositories │ │ └── user_cache_repository_test.dart │ ├── domain │ ├── providers │ │ └── user_cache_provider_test.dart │ └── repositories │ │ └── user_cache_repository_test.dart │ └── presentation │ └── .gitkeep └── shared ├── data ├── local │ └── sharedpreferences_storage_service_test.dart └── remote │ └── dio_network_service_test.dart ├── domain ├── models │ ├── paginated_response_test.dart │ ├── parse_response_test.dart │ ├── product │ │ └── product_model_test.dart │ ├── response_test.dart │ └── user │ │ └── user_model_test.dart └── providers │ └── providers_test.dart ├── exceptions └── http_exception_test.dart └── mixins └── exception_handler_mixin_test.dart /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dart_tool/package_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/.dart_tool/package_config.json -------------------------------------------------------------------------------- /.dart_tool/package_config_subset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/.dart_tool/package_config_subset -------------------------------------------------------------------------------- /.dart_tool/version: -------------------------------------------------------------------------------- 1 | 3.27.1 -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/flutter_project/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/src/main/kotlin/com/example/flutter_project/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-riverpod/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/Uuttssaavv/flutter-clean-architecture-riverpod/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/Uuttssaavv/flutter-clean-architecture-riverpod/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/Uuttssaavv/flutter-clean-architecture-riverpod/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/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /coverage/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/coverage/lcov.info -------------------------------------------------------------------------------- /coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/coverage_badge.svg -------------------------------------------------------------------------------- /folder_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/folder_structure.md -------------------------------------------------------------------------------- /gencov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/gencov.sh -------------------------------------------------------------------------------- /git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/git.sh -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-riverpod/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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-riverpod/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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-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/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/configs/app_configs.dart: -------------------------------------------------------------------------------- 1 | class AppConfigs { 2 | static String baseUrl = 'https://dummyjson.com'; 3 | } 4 | -------------------------------------------------------------------------------- /lib/features/authentication/data/datasource/auth_local_data_source.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/features/authentication/data/datasource/auth_remote_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/data/datasource/auth_remote_data_source.dart -------------------------------------------------------------------------------- /lib/features/authentication/data/repositories/authentication_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/data/repositories/authentication_repository_impl.dart -------------------------------------------------------------------------------- /lib/features/authentication/domain/providers/login_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/domain/providers/login_provider.dart -------------------------------------------------------------------------------- /lib/features/authentication/domain/repositories/auth_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/domain/repositories/auth_repository.dart -------------------------------------------------------------------------------- /lib/features/authentication/presentation/providers/auth_providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/presentation/providers/auth_providers.dart -------------------------------------------------------------------------------- /lib/features/authentication/presentation/providers/state/auth_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/presentation/providers/state/auth_notifier.dart -------------------------------------------------------------------------------- /lib/features/authentication/presentation/providers/state/auth_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/presentation/providers/state/auth_state.dart -------------------------------------------------------------------------------- /lib/features/authentication/presentation/providers/state/auth_state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/presentation/providers/state/auth_state.freezed.dart -------------------------------------------------------------------------------- /lib/features/authentication/presentation/screens/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/presentation/screens/login_screen.dart -------------------------------------------------------------------------------- /lib/features/authentication/presentation/widgets/auth_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/authentication/presentation/widgets/auth_field.dart -------------------------------------------------------------------------------- /lib/features/authentication/presentation/widgets/button.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/features/dashboard/data/datasource/dashboard_local_datasource.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/features/dashboard/data/datasource/dashboard_remote_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/data/datasource/dashboard_remote_datasource.dart -------------------------------------------------------------------------------- /lib/features/dashboard/data/repositories/dashboard_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/data/repositories/dashboard_repository.dart -------------------------------------------------------------------------------- /lib/features/dashboard/domain/providers/dashboard_providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/domain/providers/dashboard_providers.dart -------------------------------------------------------------------------------- /lib/features/dashboard/domain/repositories/dashboard_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/domain/repositories/dashboard_repository.dart -------------------------------------------------------------------------------- /lib/features/dashboard/presentation/providers/dashboard_state_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/presentation/providers/dashboard_state_provider.dart -------------------------------------------------------------------------------- /lib/features/dashboard/presentation/providers/state/dashboard_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/presentation/providers/state/dashboard_notifier.dart -------------------------------------------------------------------------------- /lib/features/dashboard/presentation/providers/state/dashboard_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/presentation/providers/state/dashboard_state.dart -------------------------------------------------------------------------------- /lib/features/dashboard/presentation/screens/dashboard_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/presentation/screens/dashboard_screen.dart -------------------------------------------------------------------------------- /lib/features/dashboard/presentation/widgets/dashboard_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/dashboard/presentation/widgets/dashboard_drawer.dart -------------------------------------------------------------------------------- /lib/features/splash/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/features/splash/domain/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/features/splash/presentation/providers/splash_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/splash/presentation/providers/splash_provider.dart -------------------------------------------------------------------------------- /lib/features/splash/presentation/screens/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/features/splash/presentation/screens/splash_screen.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/main/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/main/app.dart -------------------------------------------------------------------------------- /lib/main/app_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/main/app_env.dart -------------------------------------------------------------------------------- /lib/main/main_dev.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/main/main_dev.dart -------------------------------------------------------------------------------- /lib/main/main_staging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/main/main_staging.dart -------------------------------------------------------------------------------- /lib/main/observers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/main/observers.dart -------------------------------------------------------------------------------- /lib/routes/app_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/routes/app_route.dart -------------------------------------------------------------------------------- /lib/routes/app_route.gr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/routes/app_route.gr.dart -------------------------------------------------------------------------------- /lib/services/user_cache_service/data/datasource/user_local_datasource.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/services/user_cache_service/data/datasource/user_local_datasource.dart -------------------------------------------------------------------------------- /lib/services/user_cache_service/data/repositories/user_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/services/user_cache_service/data/repositories/user_repository_impl.dart -------------------------------------------------------------------------------- /lib/services/user_cache_service/domain/providers/current_user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/services/user_cache_service/domain/providers/current_user_provider.dart -------------------------------------------------------------------------------- /lib/services/user_cache_service/domain/providers/user_cache_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/services/user_cache_service/domain/providers/user_cache_provider.dart -------------------------------------------------------------------------------- /lib/services/user_cache_service/domain/repositories/user_cache_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/services/user_cache_service/domain/repositories/user_cache_repository.dart -------------------------------------------------------------------------------- /lib/services/user_cache_service/presentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/shared/data/local/shared_prefs_storage_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/data/local/shared_prefs_storage_service.dart -------------------------------------------------------------------------------- /lib/shared/data/local/storage_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/data/local/storage_service.dart -------------------------------------------------------------------------------- /lib/shared/data/remote/dio_network_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/data/remote/dio_network_service.dart -------------------------------------------------------------------------------- /lib/shared/data/remote/network_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/data/remote/network_service.dart -------------------------------------------------------------------------------- /lib/shared/data/remote/remote.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/data/remote/remote.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/either.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/either.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/models.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/paginated_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/paginated_response.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/parse_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/parse_response.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/product/product_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/product/product_model.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/product/product_model.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/product/product_model.freezed.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/product/product_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/product/product_model.g.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/response.dart -------------------------------------------------------------------------------- /lib/shared/domain/models/user/user_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/models/user/user_model.dart -------------------------------------------------------------------------------- /lib/shared/domain/providers/dio_network_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/providers/dio_network_service_provider.dart -------------------------------------------------------------------------------- /lib/shared/domain/providers/shared_preferences_storage_service_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/domain/providers/shared_preferences_storage_service_provider.dart -------------------------------------------------------------------------------- /lib/shared/exceptions/http_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/exceptions/http_exception.dart -------------------------------------------------------------------------------- /lib/shared/globals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/globals.dart -------------------------------------------------------------------------------- /lib/shared/mixins/exception_handler_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/mixins/exception_handler_mixin.dart -------------------------------------------------------------------------------- /lib/shared/theme/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/theme/app_colors.dart -------------------------------------------------------------------------------- /lib/shared/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/shared/theme/test_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/theme/test_styles.dart -------------------------------------------------------------------------------- /lib/shared/theme/text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/theme/text_theme.dart -------------------------------------------------------------------------------- /lib/shared/widgets/app_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/widgets/app_error.dart -------------------------------------------------------------------------------- /lib/shared/widgets/app_loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/lib/shared/widgets/app_loading.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/features/authentication/data/datasource/auth_local_data_source_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /test/features/authentication/data/datasource/auth_remote_data_source_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/authentication/data/datasource/auth_remote_data_source_test.dart -------------------------------------------------------------------------------- /test/features/authentication/data/repositories/atuhentication_repository_impl_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/authentication/data/repositories/atuhentication_repository_impl_test.dart -------------------------------------------------------------------------------- /test/features/authentication/domain/providers/providers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/authentication/domain/providers/providers_test.dart -------------------------------------------------------------------------------- /test/features/authentication/domain/repositories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/features/authentication/presentation/providers/auth_providers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/authentication/presentation/providers/auth_providers_test.dart -------------------------------------------------------------------------------- /test/features/authentication/presentation/screens/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/features/dashboard/data/datasource/dashboard_local_datasource_test.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /test/features/dashboard/data/datasource/dashboard_remote_datasource_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/dashboard/data/datasource/dashboard_remote_datasource_test.dart -------------------------------------------------------------------------------- /test/features/dashboard/data/repositories/dashboard_repository_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/dashboard/data/repositories/dashboard_repository_test.dart -------------------------------------------------------------------------------- /test/features/dashboard/domain/providers/dashboard_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/dashboard/domain/providers/dashboard_provider_test.dart -------------------------------------------------------------------------------- /test/features/dashboard/domain/repositories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/features/dashboard/presentation/providers/dashboard_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/dashboard/presentation/providers/dashboard_provider_test.dart -------------------------------------------------------------------------------- /test/features/dashboard/presentation/providers/state/dashboard_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/features/dashboard/presentation/providers/state/dashboard_state_test.dart -------------------------------------------------------------------------------- /test/fixtures/dashboard/dummy_productlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/fixtures/dashboard/dummy_productlist.dart -------------------------------------------------------------------------------- /test/fixtures/data/product_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/fixtures/data/product_response.dart -------------------------------------------------------------------------------- /test/fixtures/data/user_map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/fixtures/data/user_map.dart -------------------------------------------------------------------------------- /test/fixtures/dummy_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/fixtures/dummy_data.dart -------------------------------------------------------------------------------- /test/fixtures/test_fixture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/fixtures/test_fixture.dart -------------------------------------------------------------------------------- /test/fixtures/user_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/fixtures/user_response.json -------------------------------------------------------------------------------- /test/services/user_cache_service/data/datasource/user_local_datasource_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/services/user_cache_service/data/datasource/user_local_datasource_test.dart -------------------------------------------------------------------------------- /test/services/user_cache_service/data/repositories/user_cache_repository_test.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /test/services/user_cache_service/domain/providers/user_cache_provider_test.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /test/services/user_cache_service/domain/repositories/user_cache_repository_test.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | // 3 | } 4 | -------------------------------------------------------------------------------- /test/services/user_cache_service/presentation/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/shared/data/local/sharedpreferences_storage_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/data/local/sharedpreferences_storage_service_test.dart -------------------------------------------------------------------------------- /test/shared/data/remote/dio_network_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/data/remote/dio_network_service_test.dart -------------------------------------------------------------------------------- /test/shared/domain/models/paginated_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/domain/models/paginated_response_test.dart -------------------------------------------------------------------------------- /test/shared/domain/models/parse_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/domain/models/parse_response_test.dart -------------------------------------------------------------------------------- /test/shared/domain/models/product/product_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/domain/models/product/product_model_test.dart -------------------------------------------------------------------------------- /test/shared/domain/models/response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/domain/models/response_test.dart -------------------------------------------------------------------------------- /test/shared/domain/models/user/user_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/domain/models/user/user_model_test.dart -------------------------------------------------------------------------------- /test/shared/domain/providers/providers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/domain/providers/providers_test.dart -------------------------------------------------------------------------------- /test/shared/exceptions/http_exception_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/exceptions/http_exception_test.dart -------------------------------------------------------------------------------- /test/shared/mixins/exception_handler_mixin_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Uuttssaavv/flutter-clean-architecture-riverpod/HEAD/test/shared/mixins/exception_handler_mixin_test.dart --------------------------------------------------------------------------------