├── .github └── FUNDING.yml ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── vb10 │ │ │ │ └── architecturev2 │ │ │ │ └── architecture_template_v2 │ │ │ │ └── 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 ├── fastlane │ ├── Appfile │ └── Fastfile ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── asset └── translations │ ├── en.json │ └── tr.json ├── documentation └── theme_style.png ├── en_article.md ├── image-1.png ├── image.png ├── integration_test └── home_view_test.dart ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Gemfile ├── Gemfile.lock ├── 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 ├── RunnerTests │ └── RunnerTests.swift └── fastlane │ ├── Appfile │ └── Fastfile ├── lib ├── development │ └── preview_main.dart ├── feature │ └── home │ │ ├── view │ │ ├── home_detail_view.dart │ │ ├── home_view.dart │ │ ├── mixin │ │ │ └── home_view_mixin.dart │ │ └── widget │ │ │ ├── home_app_bar.dart │ │ │ └── home_user_list.dart │ │ └── view_model │ │ ├── home_view_model.dart │ │ ├── mixin │ │ └── home_view_model_mixin.dart │ │ └── state │ │ └── home_state.dart ├── main.dart └── product │ ├── cache │ ├── model │ │ └── user_cache_model.dart │ └── product_cache.dart │ ├── init │ ├── application_initialize.dart │ ├── config │ │ └── app_environment.dart │ ├── index.dart │ ├── product_localization.dart │ ├── state_initialize.dart │ └── theme │ │ ├── custom_color_scheme.dart │ │ ├── custom_dark_theme.dart │ │ ├── custom_light_theme.dart │ │ ├── custom_theme.dart │ │ └── index.dart │ ├── navigation │ ├── app_router.dart │ └── app_router.gr.dart │ ├── service │ ├── interface │ │ └── authenction_operation.dart │ ├── login_service.dart │ └── manager │ │ ├── index.dart │ │ ├── product_network_error_manager.dart │ │ ├── product_service_manager.dart │ │ └── product_service_path.dart │ ├── state │ ├── base │ │ ├── base_cubit.dart │ │ └── base_state.dart │ ├── container │ │ ├── index.dart │ │ ├── product_state_container.dart │ │ └── product_state_items.dart │ └── view_model │ │ ├── product_state.dart │ │ └── product_view_model.dart │ ├── utility │ └── constans │ │ ├── enums │ │ └── locales.dart │ │ └── project_radius.dart │ └── widget │ ├── button │ ├── bold_text_button.dart │ ├── custom_login │ │ ├── custom_login_button.dart │ │ └── custom_login_button_mixin.dart │ ├── dialog_normal_button.dart │ ├── index.dart │ └── normal_button.dart │ ├── padding │ └── project_padding.dart │ └── project_network_image.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── module ├── common │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ │ └── settings.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── common.dart │ │ └── src │ │ │ ├── index.dart │ │ │ └── package │ │ │ ├── custom_image │ │ │ ├── custom_mem_cahe.dart │ │ │ ├── custom_network_image.dart │ │ │ └── index.dart │ │ │ └── index.dart │ ├── pubspec.yaml │ └── test │ │ └── common_test.dart ├── core │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ │ └── settings.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ │ ├── core.dart │ │ └── src │ │ │ └── cache │ │ │ ├── core │ │ │ ├── cache_manager.dart │ │ │ ├── cache_model.dart │ │ │ ├── cache_operation.dart │ │ │ └── index.dart │ │ │ └── hive │ │ │ ├── hive_cache_manager.dart │ │ │ ├── hive_cache_operation.dart │ │ │ └── index.dart │ ├── pubspec.yaml │ └── test │ │ ├── core │ │ └── hive_common_test.dart │ │ ├── hive_cahe_manager_test.dart │ │ └── user_cache.dart ├── gen │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── assets │ │ ├── color │ │ │ └── colors.xml │ │ ├── icons │ │ │ └── ic_love.svg │ │ ├── images │ │ │ └── img_flags.png │ │ └── lottie │ │ │ └── anim_zombie.json │ ├── lib │ │ ├── gen.dart │ │ └── src │ │ │ ├── asset │ │ │ ├── assets.gen.dart │ │ │ ├── colors.gen.dart │ │ │ └── index.dart │ │ │ ├── environment │ │ │ ├── app_configuration.dart │ │ │ ├── dev_env.dart │ │ │ ├── index.dart │ │ │ └── prod_env.dart │ │ │ ├── index.dart │ │ │ └── model │ │ │ ├── attributes.dart │ │ │ ├── book.dart │ │ │ ├── index.dart │ │ │ └── user.dart │ └── pubspec.yaml └── widgets │ ├── .gitignore │ ├── .metadata │ ├── .vscode │ └── settings.json │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── lib │ ├── src │ │ ├── core │ │ │ └── dialog_base.dart │ │ ├── feature │ │ │ ├── index.dart │ │ │ └── responsive │ │ │ │ ├── adapt_all_view.dart │ │ │ │ ├── adapt_mobile_view.dart │ │ │ │ ├── custom_responsive.dart │ │ │ │ └── index.dart │ │ ├── index.dart │ │ ├── utility │ │ │ ├── index.dart │ │ │ └── mixin │ │ │ │ ├── index.dart │ │ │ │ ├── loading_mixin.dart │ │ │ │ └── mounted_mixin.dart │ │ └── widgets │ │ │ ├── dialog │ │ │ ├── index.dart │ │ │ ├── question_dialog.dart │ │ │ └── success_dialog.dart │ │ │ └── index.dart │ └── widgets.dart │ ├── pubspec.yaml │ └── test │ └── widgets_test.dart ├── pubspec.lock ├── pubspec.yaml ├── script ├── android_build.sh ├── build.sh ├── clean.sh ├── full_clean.sh ├── icon_build.sh ├── ios_clean.sh └── lang.sh ├── test ├── network │ └── network_manager_test.dart ├── view_model │ ├── home_view_model_test.dart │ └── mock │ │ ├── login_service_mock.dart │ │ └── user_cache_mock.dart └── widget │ └── home_widget_test.dart ├── vscode-extensions-install.sh ├── vscode-extensions-list.txt ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /android/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/Gemfile.lock -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/vb10/architecturev2/architecture_template_v2/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/main/kotlin/com/vb10/architecturev2/architecture_template_v2/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/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/VB10/architecture_template_v2/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/VB10/architecture_template_v2/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/VB10/architecture_template_v2/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/VB10/architecture_template_v2/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/fastlane/Appfile -------------------------------------------------------------------------------- /android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/fastlane/Fastfile -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /asset/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/asset/translations/en.json -------------------------------------------------------------------------------- /asset/translations/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/asset/translations/tr.json -------------------------------------------------------------------------------- /documentation/theme_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/documentation/theme_style.png -------------------------------------------------------------------------------- /en_article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/en_article.md -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/image-1.png -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/image.png -------------------------------------------------------------------------------- /integration_test/home_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/integration_test/home_view_test.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Gemfile.lock -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/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/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/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/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/fastlane/Appfile -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /lib/development/preview_main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/development/preview_main.dart -------------------------------------------------------------------------------- /lib/feature/home/view/home_detail_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/feature/home/view/home_detail_view.dart -------------------------------------------------------------------------------- /lib/feature/home/view/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/feature/home/view/home_view.dart -------------------------------------------------------------------------------- /lib/feature/home/view/mixin/home_view_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/feature/home/view/mixin/home_view_mixin.dart -------------------------------------------------------------------------------- /lib/feature/home/view/widget/home_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/feature/home/view/widget/home_app_bar.dart -------------------------------------------------------------------------------- /lib/feature/home/view/widget/home_user_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/feature/home/view/widget/home_user_list.dart -------------------------------------------------------------------------------- /lib/feature/home/view_model/home_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/feature/home/view_model/home_view_model.dart -------------------------------------------------------------------------------- /lib/feature/home/view_model/mixin/home_view_model_mixin.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/feature/home/view_model/state/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/feature/home/view_model/state/home_state.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/product/cache/model/user_cache_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/cache/model/user_cache_model.dart -------------------------------------------------------------------------------- /lib/product/cache/product_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/cache/product_cache.dart -------------------------------------------------------------------------------- /lib/product/init/application_initialize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/application_initialize.dart -------------------------------------------------------------------------------- /lib/product/init/config/app_environment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/config/app_environment.dart -------------------------------------------------------------------------------- /lib/product/init/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/index.dart -------------------------------------------------------------------------------- /lib/product/init/product_localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/product_localization.dart -------------------------------------------------------------------------------- /lib/product/init/state_initialize.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/state_initialize.dart -------------------------------------------------------------------------------- /lib/product/init/theme/custom_color_scheme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/theme/custom_color_scheme.dart -------------------------------------------------------------------------------- /lib/product/init/theme/custom_dark_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/theme/custom_dark_theme.dart -------------------------------------------------------------------------------- /lib/product/init/theme/custom_light_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/theme/custom_light_theme.dart -------------------------------------------------------------------------------- /lib/product/init/theme/custom_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/theme/custom_theme.dart -------------------------------------------------------------------------------- /lib/product/init/theme/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/init/theme/index.dart -------------------------------------------------------------------------------- /lib/product/navigation/app_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/navigation/app_router.dart -------------------------------------------------------------------------------- /lib/product/navigation/app_router.gr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/navigation/app_router.gr.dart -------------------------------------------------------------------------------- /lib/product/service/interface/authenction_operation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/service/interface/authenction_operation.dart -------------------------------------------------------------------------------- /lib/product/service/login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/service/login_service.dart -------------------------------------------------------------------------------- /lib/product/service/manager/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/service/manager/index.dart -------------------------------------------------------------------------------- /lib/product/service/manager/product_network_error_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/service/manager/product_network_error_manager.dart -------------------------------------------------------------------------------- /lib/product/service/manager/product_service_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/service/manager/product_service_manager.dart -------------------------------------------------------------------------------- /lib/product/service/manager/product_service_path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/service/manager/product_service_path.dart -------------------------------------------------------------------------------- /lib/product/state/base/base_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/state/base/base_cubit.dart -------------------------------------------------------------------------------- /lib/product/state/base/base_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/state/base/base_state.dart -------------------------------------------------------------------------------- /lib/product/state/container/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/state/container/index.dart -------------------------------------------------------------------------------- /lib/product/state/container/product_state_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/state/container/product_state_container.dart -------------------------------------------------------------------------------- /lib/product/state/container/product_state_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/state/container/product_state_items.dart -------------------------------------------------------------------------------- /lib/product/state/view_model/product_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/state/view_model/product_state.dart -------------------------------------------------------------------------------- /lib/product/state/view_model/product_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/state/view_model/product_view_model.dart -------------------------------------------------------------------------------- /lib/product/utility/constans/enums/locales.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/utility/constans/enums/locales.dart -------------------------------------------------------------------------------- /lib/product/utility/constans/project_radius.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/utility/constans/project_radius.dart -------------------------------------------------------------------------------- /lib/product/widget/button/bold_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/button/bold_text_button.dart -------------------------------------------------------------------------------- /lib/product/widget/button/custom_login/custom_login_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/button/custom_login/custom_login_button.dart -------------------------------------------------------------------------------- /lib/product/widget/button/custom_login/custom_login_button_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/button/custom_login/custom_login_button_mixin.dart -------------------------------------------------------------------------------- /lib/product/widget/button/dialog_normal_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/button/dialog_normal_button.dart -------------------------------------------------------------------------------- /lib/product/widget/button/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/button/index.dart -------------------------------------------------------------------------------- /lib/product/widget/button/normal_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/button/normal_button.dart -------------------------------------------------------------------------------- /lib/product/widget/padding/project_padding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/padding/project_padding.dart -------------------------------------------------------------------------------- /lib/product/widget/project_network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/lib/product/widget/project_network_image.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /module/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/.gitignore -------------------------------------------------------------------------------- /module/common/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/.metadata -------------------------------------------------------------------------------- /module/common/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "docwriter.hotkey.mac": "⌥ + ." 3 | } 4 | -------------------------------------------------------------------------------- /module/common/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module/common/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/README.md -------------------------------------------------------------------------------- /module/common/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/analysis_options.yaml -------------------------------------------------------------------------------- /module/common/lib/common.dart: -------------------------------------------------------------------------------- 1 | export 'src/index.dart'; 2 | -------------------------------------------------------------------------------- /module/common/lib/src/index.dart: -------------------------------------------------------------------------------- 1 | export 'package/index.dart'; 2 | -------------------------------------------------------------------------------- /module/common/lib/src/package/custom_image/custom_mem_cahe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/lib/src/package/custom_image/custom_mem_cahe.dart -------------------------------------------------------------------------------- /module/common/lib/src/package/custom_image/custom_network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/lib/src/package/custom_image/custom_network_image.dart -------------------------------------------------------------------------------- /module/common/lib/src/package/custom_image/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/lib/src/package/custom_image/index.dart -------------------------------------------------------------------------------- /module/common/lib/src/package/index.dart: -------------------------------------------------------------------------------- 1 | export 'custom_image/index.dart'; 2 | -------------------------------------------------------------------------------- /module/common/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/common/pubspec.yaml -------------------------------------------------------------------------------- /module/common/test/common_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /module/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/.gitignore -------------------------------------------------------------------------------- /module/core/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/.metadata -------------------------------------------------------------------------------- /module/core/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "docwriter.hotkey.mac": "⌥ + ." 3 | } 4 | -------------------------------------------------------------------------------- /module/core/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module/core/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/README.md -------------------------------------------------------------------------------- /module/core/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/analysis_options.yaml -------------------------------------------------------------------------------- /module/core/lib/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/core.dart -------------------------------------------------------------------------------- /module/core/lib/src/cache/core/cache_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/src/cache/core/cache_manager.dart -------------------------------------------------------------------------------- /module/core/lib/src/cache/core/cache_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/src/cache/core/cache_model.dart -------------------------------------------------------------------------------- /module/core/lib/src/cache/core/cache_operation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/src/cache/core/cache_operation.dart -------------------------------------------------------------------------------- /module/core/lib/src/cache/core/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/src/cache/core/index.dart -------------------------------------------------------------------------------- /module/core/lib/src/cache/hive/hive_cache_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/src/cache/hive/hive_cache_manager.dart -------------------------------------------------------------------------------- /module/core/lib/src/cache/hive/hive_cache_operation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/src/cache/hive/hive_cache_operation.dart -------------------------------------------------------------------------------- /module/core/lib/src/cache/hive/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/lib/src/cache/hive/index.dart -------------------------------------------------------------------------------- /module/core/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/pubspec.yaml -------------------------------------------------------------------------------- /module/core/test/core/hive_common_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/test/core/hive_common_test.dart -------------------------------------------------------------------------------- /module/core/test/hive_cahe_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/test/hive_cahe_manager_test.dart -------------------------------------------------------------------------------- /module/core/test/user_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/core/test/user_cache.dart -------------------------------------------------------------------------------- /module/gen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/.gitignore -------------------------------------------------------------------------------- /module/gen/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/.metadata -------------------------------------------------------------------------------- /module/gen/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module/gen/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module/gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/README.md -------------------------------------------------------------------------------- /module/gen/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/analysis_options.yaml -------------------------------------------------------------------------------- /module/gen/assets/color/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/assets/color/colors.xml -------------------------------------------------------------------------------- /module/gen/assets/icons/ic_love.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/assets/icons/ic_love.svg -------------------------------------------------------------------------------- /module/gen/assets/images/img_flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/assets/images/img_flags.png -------------------------------------------------------------------------------- /module/gen/assets/lottie/anim_zombie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/assets/lottie/anim_zombie.json -------------------------------------------------------------------------------- /module/gen/lib/gen.dart: -------------------------------------------------------------------------------- 1 | export 'src/index.dart'; 2 | -------------------------------------------------------------------------------- /module/gen/lib/src/asset/assets.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/asset/assets.gen.dart -------------------------------------------------------------------------------- /module/gen/lib/src/asset/colors.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/asset/colors.gen.dart -------------------------------------------------------------------------------- /module/gen/lib/src/asset/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/asset/index.dart -------------------------------------------------------------------------------- /module/gen/lib/src/environment/app_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/environment/app_configuration.dart -------------------------------------------------------------------------------- /module/gen/lib/src/environment/dev_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/environment/dev_env.dart -------------------------------------------------------------------------------- /module/gen/lib/src/environment/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/environment/index.dart -------------------------------------------------------------------------------- /module/gen/lib/src/environment/prod_env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/environment/prod_env.dart -------------------------------------------------------------------------------- /module/gen/lib/src/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/index.dart -------------------------------------------------------------------------------- /module/gen/lib/src/model/attributes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/model/attributes.dart -------------------------------------------------------------------------------- /module/gen/lib/src/model/book.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/model/book.dart -------------------------------------------------------------------------------- /module/gen/lib/src/model/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/model/index.dart -------------------------------------------------------------------------------- /module/gen/lib/src/model/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/lib/src/model/user.dart -------------------------------------------------------------------------------- /module/gen/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/gen/pubspec.yaml -------------------------------------------------------------------------------- /module/widgets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/.gitignore -------------------------------------------------------------------------------- /module/widgets/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/.metadata -------------------------------------------------------------------------------- /module/widgets/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "docwriter.hotkey.mac": "⌥ + ." 3 | } 4 | -------------------------------------------------------------------------------- /module/widgets/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /module/widgets/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /module/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/README.md -------------------------------------------------------------------------------- /module/widgets/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/analysis_options.yaml -------------------------------------------------------------------------------- /module/widgets/lib/src/core/dialog_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/core/dialog_base.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/feature/index.dart: -------------------------------------------------------------------------------- 1 | export 'responsive/index.dart'; 2 | -------------------------------------------------------------------------------- /module/widgets/lib/src/feature/responsive/adapt_all_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/feature/responsive/adapt_all_view.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/feature/responsive/adapt_mobile_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/feature/responsive/adapt_mobile_view.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/feature/responsive/custom_responsive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/feature/responsive/custom_responsive.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/feature/responsive/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/feature/responsive/index.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/index.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/utility/index.dart: -------------------------------------------------------------------------------- 1 | export 'mixin/index.dart'; 2 | -------------------------------------------------------------------------------- /module/widgets/lib/src/utility/mixin/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/utility/mixin/index.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/utility/mixin/loading_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/utility/mixin/loading_mixin.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/utility/mixin/mounted_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/utility/mixin/mounted_mixin.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/widgets/dialog/index.dart: -------------------------------------------------------------------------------- 1 | export 'success_dialog.dart'; 2 | -------------------------------------------------------------------------------- /module/widgets/lib/src/widgets/dialog/question_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/widgets/dialog/question_dialog.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/widgets/dialog/success_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/lib/src/widgets/dialog/success_dialog.dart -------------------------------------------------------------------------------- /module/widgets/lib/src/widgets/index.dart: -------------------------------------------------------------------------------- 1 | export 'dialog/index.dart'; 2 | -------------------------------------------------------------------------------- /module/widgets/lib/widgets.dart: -------------------------------------------------------------------------------- 1 | export 'src/index.dart'; 2 | -------------------------------------------------------------------------------- /module/widgets/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/module/widgets/pubspec.yaml -------------------------------------------------------------------------------- /module/widgets/test/widgets_test.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /script/android_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/script/android_build.sh -------------------------------------------------------------------------------- /script/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/script/build.sh -------------------------------------------------------------------------------- /script/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/script/clean.sh -------------------------------------------------------------------------------- /script/full_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/script/full_clean.sh -------------------------------------------------------------------------------- /script/icon_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | dart run flutter_launcher_icons 4 | -------------------------------------------------------------------------------- /script/ios_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/script/ios_clean.sh -------------------------------------------------------------------------------- /script/lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/script/lang.sh -------------------------------------------------------------------------------- /test/network/network_manager_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/test/network/network_manager_test.dart -------------------------------------------------------------------------------- /test/view_model/home_view_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/test/view_model/home_view_model_test.dart -------------------------------------------------------------------------------- /test/view_model/mock/login_service_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/test/view_model/mock/login_service_mock.dart -------------------------------------------------------------------------------- /test/view_model/mock/user_cache_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/test/view_model/mock/user_cache_mock.dart -------------------------------------------------------------------------------- /test/widget/home_widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/test/widget/home_widget_test.dart -------------------------------------------------------------------------------- /vscode-extensions-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/vscode-extensions-install.sh -------------------------------------------------------------------------------- /vscode-extensions-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/vscode-extensions-list.txt -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/architecture_template_v2/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------