├── README.md ├── how_to_do_error_handling ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── how_to_do_error_handling │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── auth │ │ │ ├── auth_module.dart │ │ │ ├── domain │ │ │ ├── entity │ │ │ │ └── user.dart │ │ │ ├── repositories │ │ │ │ └── auth_repository.dart │ │ │ └── user_cases │ │ │ │ └── execute_signin.dart │ │ │ ├── external │ │ │ └── datasource │ │ │ │ └── auth_datasource.dart │ │ │ ├── infra │ │ │ ├── datasources │ │ │ │ └── auth_datasource.dart │ │ │ └── repository │ │ │ │ └── auth_repository.dart │ │ │ └── presenter │ │ │ ├── auth_page.dart │ │ │ └── auth_store.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ └── modules │ │ └── auth │ │ ├── auth_module_test.dart │ │ └── auth_store_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── how_to_do_modular_and_fluro ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── how_to_do_modular_and_fluro │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── fonts │ │ ├── Lazer84-OFL.txt │ │ └── Lazer84.ttf │ └── images │ │ ├── 2.0x │ │ ├── acc_boom.png │ │ └── logo_fluro.png │ │ └── 3.0x │ │ ├── ic_function_hz.png │ │ ├── ic_result_hz.png │ │ ├── ic_transform_custom_hz.png │ │ ├── ic_transform_fade_in_hz.png │ │ ├── ic_transform_fade_out_hz.png │ │ ├── ic_transform_global_hz.png │ │ └── ic_transform_native_hz.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── components │ │ ├── app │ │ │ └── app_component.dart │ │ ├── demo │ │ │ ├── demo_message_component.dart │ │ │ ├── demo_result_component.dart │ │ │ └── demo_simple_component.dart │ │ └── home │ │ │ └── home_component.dart │ ├── config │ │ ├── application.dart │ │ ├── route_handlers.dart │ │ └── routes.dart │ ├── helpers │ │ └── color_helpers.dart │ └── main.dart ├── modules │ └── bwolf_module │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── bwolf_module.dart │ │ └── src │ │ │ └── modules │ │ │ ├── bwolf_module.dart │ │ │ └── bwolf_page.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml ├── pubspec.lock ├── pubspec.yaml ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── htd_animated_list ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_animated_list │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── dismissible_page.dart │ ├── home_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── htd_consume_firebase ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_consume_firebase │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── domain │ │ │ │ ├── entities │ │ │ │ │ ├── entity.dart │ │ │ │ │ └── event_entity.dart │ │ │ │ ├── repositories │ │ │ │ │ └── event_repository.dart │ │ │ │ └── usecase │ │ │ │ │ ├── add_event.dart │ │ │ │ │ ├── get_event_by_id.dart │ │ │ │ │ ├── get_events.dart │ │ │ │ │ ├── get_events_realtime.dart │ │ │ │ │ ├── remove_event_by_id.dart │ │ │ │ │ └── update_event.dart │ │ │ ├── external │ │ │ │ ├── datasource │ │ │ │ │ ├── datasource.dart │ │ │ │ │ └── event_datasource_impl.dart │ │ │ │ └── mappers │ │ │ │ │ ├── address_mapper.dart │ │ │ │ │ └── event_mapper.dart │ │ │ ├── home_module.dart │ │ │ ├── infra │ │ │ │ ├── datasource │ │ │ │ │ └── event_datasource.dart │ │ │ │ └── repositories │ │ │ │ │ └── event_repository_impl.dart │ │ │ └── presenter │ │ │ │ ├── home_page.dart │ │ │ │ └── home_store.dart │ │ │ └── splash │ │ │ ├── splash_module.dart │ │ │ ├── splash_page.dart │ │ │ └── splash_store.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ └── modules │ └── splash │ ├── splash_module_test.dart │ └── splash_store_test.dart ├── htd_interfaces ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_interfaces │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── home │ │ │ │ ├── home_module.dart │ │ │ │ ├── home_page.dart │ │ │ │ └── home_store.dart │ │ │ └── http_service │ │ │ │ └── http_service.dart │ │ └── service_locator │ │ │ ├── modular_service_locator.dart │ │ │ └── service_locator.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── htd_localization ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_localization │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── lang │ │ ├── en_US.json │ │ └── pt_BR.json ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── htd_loja_triple ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_loja_triple │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── cat_lovers.png │ ├── dog_foods.png │ ├── logo_bwolf.png │ ├── pet_lovers.png │ └── pet_shops.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ ├── app_controller.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── auth │ │ │ │ ├── auth_controller.dart │ │ │ │ ├── auth_module.dart │ │ │ │ └── auth_page.dart │ │ │ ├── compra │ │ │ │ ├── compra_module.dart │ │ │ │ ├── compra_page.dart │ │ │ │ └── pages │ │ │ │ │ └── carrinho │ │ │ │ │ ├── carrinho_module.dart │ │ │ │ │ ├── carrinho_page.dart │ │ │ │ │ └── widgets │ │ │ │ │ ├── carrinho_lista_produtos │ │ │ │ │ └── carrinho_lista_produtos_widget.dart │ │ │ │ │ └── carrinho_total │ │ │ │ │ └── carrinho_total_widget.dart │ │ │ ├── loja │ │ │ │ ├── loja_module.dart │ │ │ │ ├── loja_page.dart │ │ │ │ ├── loja_store.dart │ │ │ │ ├── models │ │ │ │ │ └── loja_model.dart │ │ │ │ └── repositories │ │ │ │ │ └── loja_repository.dart │ │ │ ├── pagamento │ │ │ │ ├── models │ │ │ │ │ └── pagamento_model.dart │ │ │ │ ├── pagamento_module.dart │ │ │ │ ├── pagamento_page.dart │ │ │ │ ├── pages │ │ │ │ │ ├── dados_endereco │ │ │ │ │ │ ├── dados_endereco_controller.dart │ │ │ │ │ │ └── dados_endereco_page.dart │ │ │ │ │ ├── dados_pagamento │ │ │ │ │ │ ├── dados_pagamento_controller.dart │ │ │ │ │ │ └── dados_pagamento_page.dart │ │ │ │ │ └── pagamento_sucesso │ │ │ │ │ │ ├── pagamento_sucesso_controller.dart │ │ │ │ │ │ └── pagamento_sucesso_page.dart │ │ │ │ └── stores │ │ │ │ │ └── pagamento_store.dart │ │ │ └── produto │ │ │ │ ├── models │ │ │ │ └── produto_model.dart │ │ │ │ ├── produto_module.dart │ │ │ │ ├── produto_page.dart │ │ │ │ ├── produto_store.dart │ │ │ │ └── repositories │ │ │ │ └── produto_repository.dart │ │ └── shared │ │ │ ├── models │ │ │ └── usuario │ │ │ │ └── usuario_model.dart │ │ │ ├── stores │ │ │ └── auth │ │ │ │ └── auth_view_model.dart │ │ │ └── widgets │ │ │ └── custom_thing.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_provider_modular ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_provider_modular │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── core │ │ └── module.dart │ ├── home │ │ ├── home_module.dart │ │ ├── home_page.dart │ │ ├── home_repository.dart │ │ └── inner_home_page.dart │ ├── main.dart │ ├── main │ │ └── main_page.dart │ └── perfil │ │ ├── perfil_module.dart │ │ ├── perfil_page.dart │ │ └── perfil_repository.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── htd_route_outlets ├── .dart_tool │ ├── package_config.json │ ├── package_config_subset │ └── version ├── .flutter-plugins ├── .flutter-plugins-dependencies ├── .gitignore ├── .idea │ ├── libraries │ │ ├── Dart_SDK.xml │ │ └── KotlinJavaRuntime.xml │ ├── modules.xml │ ├── runConfigurations │ │ └── main_dart.xml │ └── workspace.xml ├── .metadata ├── .packages ├── .vscode │ └── settings.json ├── README.md ├── android │ ├── .gitignore │ ├── .gradle │ │ ├── 6.7 │ │ │ ├── executionHistory │ │ │ │ ├── executionHistory.bin │ │ │ │ └── executionHistory.lock │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── gc.properties │ │ │ └── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ └── taskHistory.bin │ │ ├── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ ├── checksums │ │ │ └── checksums.lock │ │ ├── configuration-cache │ │ │ └── gc.properties │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── flutter │ │ │ │ │ └── plugins │ │ │ │ │ └── GeneratedPluginRegistrant.java │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_route_outlets │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── htd_route_outlets_android.iml │ ├── local.properties │ └── settings.gradle ├── htd_route_outlets.iml ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ ├── Generated.xcconfig │ │ ├── Release.xcconfig │ │ └── flutter_export_environment.sh │ ├── 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 │ │ ├── GeneratedPluginRegistrant.h │ │ ├── GeneratedPluginRegistrant.m │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ ├── app_controller.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── root │ │ │ ├── calls │ │ │ ├── calls_module.dart │ │ │ └── calls_page.dart │ │ │ ├── chat │ │ │ ├── chat_group │ │ │ │ ├── chat_group_module.dart │ │ │ │ └── chat_group_page.dart │ │ │ ├── chat_module.dart │ │ │ ├── chat_page.dart │ │ │ └── chat_user │ │ │ │ ├── chat_user_module.dart │ │ │ │ └── chat_user_page.dart │ │ │ ├── root_controller.dart │ │ │ ├── root_module.dart │ │ │ ├── root_page.dart │ │ │ └── status │ │ │ ├── status_module.dart │ │ │ └── status_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_routeoutlet_lateral ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_routeoutlet_lateral │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ └── home_store.dart │ │ │ ├── products │ │ │ ├── products_module.dart │ │ │ ├── products_page.dart │ │ │ └── products_store.dart │ │ │ ├── root │ │ │ ├── root_module.dart │ │ │ ├── root_page.dart │ │ │ └── root_store.dart │ │ │ └── splash │ │ │ ├── splash_module.dart │ │ │ ├── splash_page.dart │ │ │ └── splash_store.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── hwt_localization_modular ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── hwt_localization_modular │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── lang │ │ ├── en_US.json │ │ └── pt_BR.json ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── app │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ └── home_store.dart │ │ │ └── splash │ │ │ ├── splash_module.dart │ │ │ └── splash_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── web │ ├── assets │ │ ├── AssetManifest.json │ │ └── lang │ │ │ ├── en_US.json │ │ │ └── pt_BR.json │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-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 │ ├── run_loop.cpp │ ├── run_loop.h │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── task_clean_app ├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── task_clean_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── app │ ├── app_module.dart │ ├── app_widget.dart │ ├── modules │ │ ├── my_tasks │ │ │ ├── domain │ │ │ │ ├── entities │ │ │ │ │ └── task.dart │ │ │ │ ├── errors │ │ │ │ │ └── erros.dart │ │ │ │ ├── repositories │ │ │ │ │ └── task_repository_interface.dart │ │ │ │ └── use_cases │ │ │ │ │ ├── add_new_task.dart │ │ │ │ │ ├── remove_task.dart │ │ │ │ │ ├── retrieve_all_task.dart │ │ │ │ │ └── update_task.dart │ │ │ ├── external │ │ │ │ ├── daos │ │ │ │ │ └── tasks_dao.dart │ │ │ │ ├── local_data_source │ │ │ │ │ └── local_data_source.dart │ │ │ │ └── models │ │ │ │ │ └── task_entidade.dart │ │ │ ├── infra │ │ │ │ ├── data_source │ │ │ │ │ └── task_data_source_interface.dart │ │ │ │ └── repositories │ │ │ │ │ └── task_repository.dart │ │ │ ├── my_tasks_module.dart │ │ │ └── ui │ │ │ │ ├── add_task │ │ │ │ ├── add_task_controller.dart │ │ │ │ └── add_task_page.dart │ │ │ │ ├── list_tasks │ │ │ │ ├── list_tasks_controller.dart │ │ │ │ └── list_tasks_page.dart │ │ │ │ └── update_task │ │ │ │ ├── update_task_controller.dart │ │ │ │ └── update_task_page.dart │ │ ├── shared │ │ │ └── database │ │ │ │ ├── database_shared.dart │ │ │ │ ├── local_database.dart │ │ │ │ └── local_database.g.dart │ │ └── splash │ │ │ ├── splash_module.dart │ │ │ └── splash_page.dart │ └── shared │ │ └── widgets │ │ └── custom_line_datepicker │ │ ├── custom_line_date_picker_controller.dart │ │ └── custom_line_date_picker_widget.dart └── main.dart ├── pubspec.lock └── pubspec.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/README.md -------------------------------------------------------------------------------- /how_to_do_error_handling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/.gitignore -------------------------------------------------------------------------------- /how_to_do_error_handling/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/.metadata -------------------------------------------------------------------------------- /how_to_do_error_handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/README.md -------------------------------------------------------------------------------- /how_to_do_error_handling/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/.gitignore -------------------------------------------------------------------------------- /how_to_do_error_handling/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/app/build.gradle -------------------------------------------------------------------------------- /how_to_do_error_handling/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /how_to_do_error_handling/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /how_to_do_error_handling/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /how_to_do_error_handling/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /how_to_do_error_handling/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /how_to_do_error_handling/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/build.gradle -------------------------------------------------------------------------------- /how_to_do_error_handling/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/gradle.properties -------------------------------------------------------------------------------- /how_to_do_error_handling/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /how_to_do_error_handling/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/android/settings.gradle -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/.gitignore -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/ios/Runner/Info.plist -------------------------------------------------------------------------------- /how_to_do_error_handling/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /how_to_do_error_handling/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/lib/app/app_module.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/lib/app/app_widget.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/lib/app/modules/auth/auth_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/lib/app/modules/auth/auth_module.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/lib/app/modules/auth/domain/entity/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/lib/app/modules/auth/domain/entity/user.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/lib/app/modules/auth/presenter/auth_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/lib/app/modules/auth/presenter/auth_page.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/lib/app/modules/auth/presenter/auth_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/lib/app/modules/auth/presenter/auth_store.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/lib/main.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/pubspec.lock -------------------------------------------------------------------------------- /how_to_do_error_handling/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/pubspec.yaml -------------------------------------------------------------------------------- /how_to_do_error_handling/test/app/modules/auth/auth_module_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/test/app/modules/auth/auth_module_test.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/test/app/modules/auth/auth_store_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/test/app/modules/auth/auth_store_test.dart -------------------------------------------------------------------------------- /how_to_do_error_handling/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/web/favicon.png -------------------------------------------------------------------------------- /how_to_do_error_handling/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/web/icons/Icon-192.png -------------------------------------------------------------------------------- /how_to_do_error_handling/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/web/icons/Icon-512.png -------------------------------------------------------------------------------- /how_to_do_error_handling/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/web/index.html -------------------------------------------------------------------------------- /how_to_do_error_handling/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/web/manifest.json -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/.gitignore -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/CMakeLists.txt -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/Runner.rc -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/main.cpp -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/resource.h -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/run_loop.h -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/utils.cpp -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/utils.h -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /how_to_do_error_handling/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_error_handling/windows/runner/win32_window.h -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/.gitignore -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/.metadata -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/README.md -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/.gitignore -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/app/build.gradle -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/build.gradle -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/gradle.properties -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/android/settings.gradle -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/fonts/Lazer84-OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/fonts/Lazer84-OFL.txt -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/fonts/Lazer84.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/fonts/Lazer84.ttf -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/images/2.0x/acc_boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/images/2.0x/acc_boom.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/images/2.0x/logo_fluro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/images/2.0x/logo_fluro.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/images/3.0x/ic_function_hz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/images/3.0x/ic_function_hz.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/images/3.0x/ic_result_hz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/images/3.0x/ic_result_hz.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/images/3.0x/ic_transform_custom_hz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/images/3.0x/ic_transform_custom_hz.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/images/3.0x/ic_transform_global_hz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/images/3.0x/ic_transform_global_hz.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/assets/images/3.0x/ic_transform_native_hz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/assets/images/3.0x/ic_transform_native_hz.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/ios/.gitignore -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/ios/Runner/Info.plist -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/lib/components/app/app_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/lib/components/app/app_component.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/lib/components/home/home_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/lib/components/home/home_component.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/lib/config/application.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/lib/config/application.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/lib/config/route_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/lib/config/route_handlers.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/lib/config/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/lib/config/routes.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/lib/helpers/color_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/lib/helpers/color_helpers.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/lib/main.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/modules/bwolf_module/.gitignore -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/modules/bwolf_module/.metadata -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/modules/bwolf_module/README.md -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/lib/bwolf_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/modules/bwolf_module/lib/bwolf_module.dart -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/modules/bwolf_module/pubspec.lock -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/modules/bwolf_module/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/modules/bwolf_module/pubspec.yaml -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/pubspec.lock -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/pubspec.yaml -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/web/favicon.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/web/icons/Icon-192.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/web/icons/Icon-512.png -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/web/index.html -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/web/manifest.json -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/.gitignore -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/CMakeLists.txt -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/Runner.rc -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/main.cpp -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/resource.h -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/run_loop.h -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/utils.cpp -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/utils.h -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /how_to_do_modular_and_fluro/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/how_to_do_modular_and_fluro/windows/runner/win32_window.h -------------------------------------------------------------------------------- /htd_animated_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/.gitignore -------------------------------------------------------------------------------- /htd_animated_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/.metadata -------------------------------------------------------------------------------- /htd_animated_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/README.md -------------------------------------------------------------------------------- /htd_animated_list/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/.gitignore -------------------------------------------------------------------------------- /htd_animated_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/build.gradle -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_animated_list/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_animated_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/build.gradle -------------------------------------------------------------------------------- /htd_animated_list/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/gradle.properties -------------------------------------------------------------------------------- /htd_animated_list/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /htd_animated_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/android/settings.gradle -------------------------------------------------------------------------------- /htd_animated_list/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/.gitignore -------------------------------------------------------------------------------- /htd_animated_list/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_animated_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_animated_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_animated_list/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_animated_list/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /htd_animated_list/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_animated_list/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_animated_list/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_animated_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_animated_list/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_animated_list/lib/dismissible_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/lib/dismissible_page.dart -------------------------------------------------------------------------------- /htd_animated_list/lib/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/lib/home_page.dart -------------------------------------------------------------------------------- /htd_animated_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/lib/main.dart -------------------------------------------------------------------------------- /htd_animated_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/pubspec.lock -------------------------------------------------------------------------------- /htd_animated_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/pubspec.yaml -------------------------------------------------------------------------------- /htd_animated_list/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/test/widget_test.dart -------------------------------------------------------------------------------- /htd_animated_list/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/web/favicon.png -------------------------------------------------------------------------------- /htd_animated_list/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_animated_list/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_animated_list/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/web/index.html -------------------------------------------------------------------------------- /htd_animated_list/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/web/manifest.json -------------------------------------------------------------------------------- /htd_animated_list/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/.gitignore -------------------------------------------------------------------------------- /htd_animated_list/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_animated_list/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /htd_animated_list/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /htd_animated_list/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /htd_animated_list/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /htd_animated_list/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_animated_list/windows/runner/win32_window.h -------------------------------------------------------------------------------- /htd_consume_firebase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/.gitignore -------------------------------------------------------------------------------- /htd_consume_firebase/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/.metadata -------------------------------------------------------------------------------- /htd_consume_firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/README.md -------------------------------------------------------------------------------- /htd_consume_firebase/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/.gitignore -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/build.gradle -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_consume_firebase/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_consume_firebase/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/build.gradle -------------------------------------------------------------------------------- /htd_consume_firebase/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/gradle.properties -------------------------------------------------------------------------------- /htd_consume_firebase/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /htd_consume_firebase/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/android/settings.gradle -------------------------------------------------------------------------------- /htd_consume_firebase/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/.gitignore -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_consume_firebase/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/home/domain/entities/entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/home/domain/entities/entity.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/home/domain/usecase/add_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/home/domain/usecase/add_event.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/home/domain/usecase/get_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/home/domain/usecase/get_events.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/home/home_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/home/home_module.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/home/presenter/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/home/presenter/home_page.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/home/presenter/home_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/home/presenter/home_store.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/splash/splash_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/splash/splash_module.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/splash/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/splash/splash_page.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/app/modules/splash/splash_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/app/modules/splash/splash_store.dart -------------------------------------------------------------------------------- /htd_consume_firebase/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/lib/main.dart -------------------------------------------------------------------------------- /htd_consume_firebase/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/pubspec.lock -------------------------------------------------------------------------------- /htd_consume_firebase/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/pubspec.yaml -------------------------------------------------------------------------------- /htd_consume_firebase/test/app/modules/splash/splash_module_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_consume_firebase/test/app/modules/splash/splash_module_test.dart -------------------------------------------------------------------------------- /htd_consume_firebase/test/app/modules/splash/splash_store_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /htd_interfaces/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/.gitignore -------------------------------------------------------------------------------- /htd_interfaces/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/.metadata -------------------------------------------------------------------------------- /htd_interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/README.md -------------------------------------------------------------------------------- /htd_interfaces/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/.gitignore -------------------------------------------------------------------------------- /htd_interfaces/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/build.gradle -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_interfaces/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_interfaces/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/build.gradle -------------------------------------------------------------------------------- /htd_interfaces/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/gradle.properties -------------------------------------------------------------------------------- /htd_interfaces/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /htd_interfaces/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/android/settings.gradle -------------------------------------------------------------------------------- /htd_interfaces/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/.gitignore -------------------------------------------------------------------------------- /htd_interfaces/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_interfaces/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_interfaces/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_interfaces/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_interfaces/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_interfaces/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_interfaces/lib/app/modules/home/home_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/app/modules/home/home_module.dart -------------------------------------------------------------------------------- /htd_interfaces/lib/app/modules/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/app/modules/home/home_page.dart -------------------------------------------------------------------------------- /htd_interfaces/lib/app/modules/home/home_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/app/modules/home/home_store.dart -------------------------------------------------------------------------------- /htd_interfaces/lib/app/modules/http_service/http_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/app/modules/http_service/http_service.dart -------------------------------------------------------------------------------- /htd_interfaces/lib/app/service_locator/modular_service_locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/app/service_locator/modular_service_locator.dart -------------------------------------------------------------------------------- /htd_interfaces/lib/app/service_locator/service_locator.dart: -------------------------------------------------------------------------------- 1 | abstract class IServiceLocator { 2 | T find(); 3 | } 4 | -------------------------------------------------------------------------------- /htd_interfaces/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/lib/main.dart -------------------------------------------------------------------------------- /htd_interfaces/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/pubspec.lock -------------------------------------------------------------------------------- /htd_interfaces/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/pubspec.yaml -------------------------------------------------------------------------------- /htd_interfaces/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/web/favicon.png -------------------------------------------------------------------------------- /htd_interfaces/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_interfaces/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_interfaces/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/web/index.html -------------------------------------------------------------------------------- /htd_interfaces/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/web/manifest.json -------------------------------------------------------------------------------- /htd_interfaces/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/.gitignore -------------------------------------------------------------------------------- /htd_interfaces/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_interfaces/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /htd_interfaces/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /htd_interfaces/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /htd_interfaces/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /htd_interfaces/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_interfaces/windows/runner/win32_window.h -------------------------------------------------------------------------------- /htd_localization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/.gitignore -------------------------------------------------------------------------------- /htd_localization/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/.metadata -------------------------------------------------------------------------------- /htd_localization/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/.vscode/launch.json -------------------------------------------------------------------------------- /htd_localization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/README.md -------------------------------------------------------------------------------- /htd_localization/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/.gitignore -------------------------------------------------------------------------------- /htd_localization/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/build.gradle -------------------------------------------------------------------------------- /htd_localization/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /htd_localization/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_localization/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_localization/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/build.gradle -------------------------------------------------------------------------------- /htd_localization/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/gradle.properties -------------------------------------------------------------------------------- /htd_localization/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /htd_localization/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/android/settings.gradle -------------------------------------------------------------------------------- /htd_localization/assets/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/assets/lang/en_US.json -------------------------------------------------------------------------------- /htd_localization/assets/lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/assets/lang/pt_BR.json -------------------------------------------------------------------------------- /htd_localization/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/.gitignore -------------------------------------------------------------------------------- /htd_localization/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_localization/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_localization/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_localization/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_localization/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /htd_localization/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_localization/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_localization/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_localization/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_localization/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_localization/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/lib/main.dart -------------------------------------------------------------------------------- /htd_localization/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/pubspec.lock -------------------------------------------------------------------------------- /htd_localization/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/pubspec.yaml -------------------------------------------------------------------------------- /htd_localization/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/test/widget_test.dart -------------------------------------------------------------------------------- /htd_localization/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/web/favicon.png -------------------------------------------------------------------------------- /htd_localization/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_localization/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_localization/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/web/index.html -------------------------------------------------------------------------------- /htd_localization/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/web/manifest.json -------------------------------------------------------------------------------- /htd_localization/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/.gitignore -------------------------------------------------------------------------------- /htd_localization/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_localization/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /htd_localization/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /htd_localization/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /htd_localization/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /htd_localization/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /htd_localization/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_localization/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /htd_localization/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /htd_localization/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_localization/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_localization/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /htd_localization/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /htd_localization/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_localization/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /htd_localization/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_localization/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_localization/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /htd_localization/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_localization/windows/runner/win32_window.h -------------------------------------------------------------------------------- /htd_loja_triple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/.gitignore -------------------------------------------------------------------------------- /htd_loja_triple/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/.metadata -------------------------------------------------------------------------------- /htd_loja_triple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/README.md -------------------------------------------------------------------------------- /htd_loja_triple/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/.gitignore -------------------------------------------------------------------------------- /htd_loja_triple/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/build.gradle -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_loja_triple/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_loja_triple/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/build.gradle -------------------------------------------------------------------------------- /htd_loja_triple/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/gradle.properties -------------------------------------------------------------------------------- /htd_loja_triple/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /htd_loja_triple/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/android/settings.gradle -------------------------------------------------------------------------------- /htd_loja_triple/assets/cat_lovers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/assets/cat_lovers.png -------------------------------------------------------------------------------- /htd_loja_triple/assets/dog_foods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/assets/dog_foods.png -------------------------------------------------------------------------------- /htd_loja_triple/assets/logo_bwolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/assets/logo_bwolf.png -------------------------------------------------------------------------------- /htd_loja_triple/assets/pet_lovers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/assets/pet_lovers.png -------------------------------------------------------------------------------- /htd_loja_triple/assets/pet_shops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/assets/pet_shops.png -------------------------------------------------------------------------------- /htd_loja_triple/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/.gitignore -------------------------------------------------------------------------------- /htd_loja_triple/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_loja_triple/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_loja_triple/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_loja_triple/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/app_controller.dart: -------------------------------------------------------------------------------- 1 | class AppController {} 2 | -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/auth/auth_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/auth/auth_controller.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/auth/auth_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/auth/auth_module.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/auth/auth_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/auth/auth_page.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/compra/compra_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/compra/compra_module.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/compra/compra_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/compra/compra_page.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/compra/pages/carrinho/carrinho_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/compra/pages/carrinho/carrinho_page.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/loja/loja_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/loja/loja_module.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/loja/loja_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/loja/loja_page.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/loja/loja_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/loja/loja_store.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/loja/models/loja_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/loja/models/loja_model.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/loja/repositories/loja_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/loja/repositories/loja_repository.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/pagamento/models/pagamento_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/pagamento/models/pagamento_model.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/pagamento/pagamento_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/pagamento/pagamento_module.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/pagamento/pagamento_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/pagamento/pagamento_page.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/pagamento/stores/pagamento_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/pagamento/stores/pagamento_store.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/produto/models/produto_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/produto/models/produto_model.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/produto/produto_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/produto/produto_module.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/produto/produto_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/produto/produto_page.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/modules/produto/produto_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/modules/produto/produto_store.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/shared/models/usuario/usuario_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/shared/models/usuario/usuario_model.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/shared/stores/auth/auth_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/shared/stores/auth/auth_view_model.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/app/shared/widgets/custom_thing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/app/shared/widgets/custom_thing.dart -------------------------------------------------------------------------------- /htd_loja_triple/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/lib/main.dart -------------------------------------------------------------------------------- /htd_loja_triple/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/pubspec.lock -------------------------------------------------------------------------------- /htd_loja_triple/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/pubspec.yaml -------------------------------------------------------------------------------- /htd_loja_triple/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/web/favicon.png -------------------------------------------------------------------------------- /htd_loja_triple/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_loja_triple/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_loja_triple/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/web/index.html -------------------------------------------------------------------------------- /htd_loja_triple/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_loja_triple/web/manifest.json -------------------------------------------------------------------------------- /htd_provider_modular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/.gitignore -------------------------------------------------------------------------------- /htd_provider_modular/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/.metadata -------------------------------------------------------------------------------- /htd_provider_modular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/README.md -------------------------------------------------------------------------------- /htd_provider_modular/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/.gitignore -------------------------------------------------------------------------------- /htd_provider_modular/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/build.gradle -------------------------------------------------------------------------------- /htd_provider_modular/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_provider_modular/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_provider_modular/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_provider_modular/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_provider_modular/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /htd_provider_modular/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_provider_modular/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_provider_modular/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/build.gradle -------------------------------------------------------------------------------- /htd_provider_modular/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/gradle.properties -------------------------------------------------------------------------------- /htd_provider_modular/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /htd_provider_modular/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/android/settings.gradle -------------------------------------------------------------------------------- /htd_provider_modular/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/.gitignore -------------------------------------------------------------------------------- /htd_provider_modular/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_provider_modular/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_provider_modular/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_provider_modular/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_provider_modular/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /htd_provider_modular/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_provider_modular/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_provider_modular/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_provider_modular/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_provider_modular/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_provider_modular/lib/core/module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/core/module.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/home/home_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/home/home_module.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/home/home_page.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/home/home_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/home/home_repository.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/home/inner_home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/home/inner_home_page.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/main.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/main/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/main/main_page.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/perfil/perfil_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/perfil/perfil_module.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/perfil/perfil_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/perfil/perfil_page.dart -------------------------------------------------------------------------------- /htd_provider_modular/lib/perfil/perfil_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/lib/perfil/perfil_repository.dart -------------------------------------------------------------------------------- /htd_provider_modular/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/pubspec.lock -------------------------------------------------------------------------------- /htd_provider_modular/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/pubspec.yaml -------------------------------------------------------------------------------- /htd_provider_modular/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/test/widget_test.dart -------------------------------------------------------------------------------- /htd_provider_modular/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/web/favicon.png -------------------------------------------------------------------------------- /htd_provider_modular/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_provider_modular/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_provider_modular/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/web/index.html -------------------------------------------------------------------------------- /htd_provider_modular/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/web/manifest.json -------------------------------------------------------------------------------- /htd_provider_modular/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/.gitignore -------------------------------------------------------------------------------- /htd_provider_modular/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_provider_modular/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /htd_provider_modular/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /htd_provider_modular/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /htd_provider_modular/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /htd_provider_modular/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_provider_modular/windows/runner/win32_window.h -------------------------------------------------------------------------------- /htd_route_outlets/.dart_tool/package_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.dart_tool/package_config.json -------------------------------------------------------------------------------- /htd_route_outlets/.dart_tool/package_config_subset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.dart_tool/package_config_subset -------------------------------------------------------------------------------- /htd_route_outlets/.dart_tool/version: -------------------------------------------------------------------------------- 1 | 2.2.0 -------------------------------------------------------------------------------- /htd_route_outlets/.flutter-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.flutter-plugins -------------------------------------------------------------------------------- /htd_route_outlets/.flutter-plugins-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.flutter-plugins-dependencies -------------------------------------------------------------------------------- /htd_route_outlets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.gitignore -------------------------------------------------------------------------------- /htd_route_outlets/.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /htd_route_outlets/.idea/libraries/KotlinJavaRuntime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.idea/libraries/KotlinJavaRuntime.xml -------------------------------------------------------------------------------- /htd_route_outlets/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.idea/modules.xml -------------------------------------------------------------------------------- /htd_route_outlets/.idea/runConfigurations/main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.idea/runConfigurations/main_dart.xml -------------------------------------------------------------------------------- /htd_route_outlets/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.idea/workspace.xml -------------------------------------------------------------------------------- /htd_route_outlets/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.metadata -------------------------------------------------------------------------------- /htd_route_outlets/.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.packages -------------------------------------------------------------------------------- /htd_route_outlets/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/.vscode/settings.json -------------------------------------------------------------------------------- /htd_route_outlets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/README.md -------------------------------------------------------------------------------- /htd_route_outlets/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gitignore -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/6.7/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/6.7/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/6.7/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/6.7/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/6.7/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/6.7/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/6.7/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/6.7/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Jan 06 23:47:41 BRT 2021 2 | gradle.version=6.7 3 | -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/configuration-cache/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_route_outlets/android/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_route_outlets/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/build.gradle -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_route_outlets/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_route_outlets/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/build.gradle -------------------------------------------------------------------------------- /htd_route_outlets/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/gradle.properties -------------------------------------------------------------------------------- /htd_route_outlets/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /htd_route_outlets/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /htd_route_outlets/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/gradlew -------------------------------------------------------------------------------- /htd_route_outlets/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/gradlew.bat -------------------------------------------------------------------------------- /htd_route_outlets/android/htd_route_outlets_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/htd_route_outlets_android.iml -------------------------------------------------------------------------------- /htd_route_outlets/android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/local.properties -------------------------------------------------------------------------------- /htd_route_outlets/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/android/settings.gradle -------------------------------------------------------------------------------- /htd_route_outlets/htd_route_outlets.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/htd_route_outlets.iml -------------------------------------------------------------------------------- /htd_route_outlets/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/.gitignore -------------------------------------------------------------------------------- /htd_route_outlets/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_route_outlets/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_route_outlets/ios/Flutter/Generated.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Flutter/Generated.xcconfig -------------------------------------------------------------------------------- /htd_route_outlets/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_route_outlets/ios/Flutter/flutter_export_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Flutter/flutter_export_environment.sh -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner/GeneratedPluginRegistrant.h -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner/GeneratedPluginRegistrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner/GeneratedPluginRegistrant.m -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_route_outlets/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/app_controller.dart: -------------------------------------------------------------------------------- 1 | class AppController {} 2 | -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/calls/calls_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/calls/calls_module.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/calls/calls_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/calls/calls_page.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/chat/chat_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/chat/chat_module.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/chat/chat_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/chat/chat_page.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/root_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/root_controller.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/root_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/root_module.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/root_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/root_page.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/status/status_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/status/status_module.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/app/modules/root/status/status_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/app/modules/root/status/status_page.dart -------------------------------------------------------------------------------- /htd_route_outlets/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/lib/main.dart -------------------------------------------------------------------------------- /htd_route_outlets/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/pubspec.lock -------------------------------------------------------------------------------- /htd_route_outlets/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/pubspec.yaml -------------------------------------------------------------------------------- /htd_route_outlets/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/web/favicon.png -------------------------------------------------------------------------------- /htd_route_outlets/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_route_outlets/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_route_outlets/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/web/index.html -------------------------------------------------------------------------------- /htd_route_outlets/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_route_outlets/web/manifest.json -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/.gitignore -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/.metadata -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/README.md -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/.gitignore -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/app/build.gradle -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/build.gradle -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/gradle.properties -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/android/settings.gradle -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/ios/.gitignore -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/home/home_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/home/home_module.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/home/home_page.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/home/home_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/home/home_store.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/products/products_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/products/products_module.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/products/products_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/products/products_page.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/products/products_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/products/products_store.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/root/root_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/root/root_module.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/root/root_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/root/root_page.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/root/root_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/root/root_store.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/splash/splash_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/splash/splash_module.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/splash/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/splash/splash_page.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/app/modules/splash/splash_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/app/modules/splash/splash_store.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/lib/main.dart -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/pubspec.lock -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/pubspec.yaml -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/web/favicon.png -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/web/index.html -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/web/manifest.json -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/.gitignore -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /htd_routeoutlet_lateral/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/htd_routeoutlet_lateral/windows/runner/win32_window.h -------------------------------------------------------------------------------- /hwt_localization_modular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/.gitignore -------------------------------------------------------------------------------- /hwt_localization_modular/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/.metadata -------------------------------------------------------------------------------- /hwt_localization_modular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/README.md -------------------------------------------------------------------------------- /hwt_localization_modular/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/.gitignore -------------------------------------------------------------------------------- /hwt_localization_modular/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/app/build.gradle -------------------------------------------------------------------------------- /hwt_localization_modular/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /hwt_localization_modular/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /hwt_localization_modular/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /hwt_localization_modular/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /hwt_localization_modular/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/build.gradle -------------------------------------------------------------------------------- /hwt_localization_modular/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/gradle.properties -------------------------------------------------------------------------------- /hwt_localization_modular/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/android/settings.gradle -------------------------------------------------------------------------------- /hwt_localization_modular/assets/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/assets/lang/en_US.json -------------------------------------------------------------------------------- /hwt_localization_modular/assets/lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/assets/lang/pt_BR.json -------------------------------------------------------------------------------- /hwt_localization_modular/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/ios/.gitignore -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/ios/Runner/Info.plist -------------------------------------------------------------------------------- /hwt_localization_modular/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /hwt_localization_modular/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/app/app_module.dart -------------------------------------------------------------------------------- /hwt_localization_modular/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/app/app_widget.dart -------------------------------------------------------------------------------- /hwt_localization_modular/lib/app/modules/home/home_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/app/modules/home/home_module.dart -------------------------------------------------------------------------------- /hwt_localization_modular/lib/app/modules/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/app/modules/home/home_page.dart -------------------------------------------------------------------------------- /hwt_localization_modular/lib/app/modules/home/home_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/app/modules/home/home_store.dart -------------------------------------------------------------------------------- /hwt_localization_modular/lib/app/modules/splash/splash_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/app/modules/splash/splash_module.dart -------------------------------------------------------------------------------- /hwt_localization_modular/lib/app/modules/splash/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/app/modules/splash/splash_page.dart -------------------------------------------------------------------------------- /hwt_localization_modular/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/lib/main.dart -------------------------------------------------------------------------------- /hwt_localization_modular/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/pubspec.lock -------------------------------------------------------------------------------- /hwt_localization_modular/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/pubspec.yaml -------------------------------------------------------------------------------- /hwt_localization_modular/web/assets/AssetManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/assets/AssetManifest.json -------------------------------------------------------------------------------- /hwt_localization_modular/web/assets/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/assets/lang/en_US.json -------------------------------------------------------------------------------- /hwt_localization_modular/web/assets/lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/assets/lang/pt_BR.json -------------------------------------------------------------------------------- /hwt_localization_modular/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/favicon.png -------------------------------------------------------------------------------- /hwt_localization_modular/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/icons/Icon-192.png -------------------------------------------------------------------------------- /hwt_localization_modular/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/icons/Icon-512.png -------------------------------------------------------------------------------- /hwt_localization_modular/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/index.html -------------------------------------------------------------------------------- /hwt_localization_modular/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/web/manifest.json -------------------------------------------------------------------------------- /hwt_localization_modular/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/.gitignore -------------------------------------------------------------------------------- /hwt_localization_modular/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/CMakeLists.txt -------------------------------------------------------------------------------- /hwt_localization_modular/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /hwt_localization_modular/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /hwt_localization_modular/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/Runner.rc -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/main.cpp -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/resource.h -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/run_loop.h -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/utils.cpp -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/utils.h -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /hwt_localization_modular/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/hwt_localization_modular/windows/runner/win32_window.h -------------------------------------------------------------------------------- /task_clean_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/.gitignore -------------------------------------------------------------------------------- /task_clean_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/.metadata -------------------------------------------------------------------------------- /task_clean_app/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/.vscode/settings.json -------------------------------------------------------------------------------- /task_clean_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/README.md -------------------------------------------------------------------------------- /task_clean_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/.gitignore -------------------------------------------------------------------------------- /task_clean_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/build.gradle -------------------------------------------------------------------------------- /task_clean_app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /task_clean_app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /task_clean_app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /task_clean_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/build.gradle -------------------------------------------------------------------------------- /task_clean_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/gradle.properties -------------------------------------------------------------------------------- /task_clean_app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /task_clean_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/android/settings.gradle -------------------------------------------------------------------------------- /task_clean_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/.gitignore -------------------------------------------------------------------------------- /task_clean_app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /task_clean_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /task_clean_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /task_clean_app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /task_clean_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /task_clean_app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /task_clean_app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /task_clean_app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /task_clean_app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /task_clean_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /task_clean_app/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/app_module.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/app_widget.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/my_tasks/domain/entities/task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/my_tasks/domain/entities/task.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/my_tasks/domain/errors/erros.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/my_tasks/domain/errors/erros.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/my_tasks/external/daos/tasks_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/my_tasks/external/daos/tasks_dao.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/my_tasks/my_tasks_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/my_tasks/my_tasks_module.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/my_tasks/ui/add_task/add_task_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/my_tasks/ui/add_task/add_task_page.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/shared/database/database_shared.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/shared/database/database_shared.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/shared/database/local_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/shared/database/local_database.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/shared/database/local_database.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/shared/database/local_database.g.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/splash/splash_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/splash/splash_module.dart -------------------------------------------------------------------------------- /task_clean_app/lib/app/modules/splash/splash_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/app/modules/splash/splash_page.dart -------------------------------------------------------------------------------- /task_clean_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/lib/main.dart -------------------------------------------------------------------------------- /task_clean_app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/pubspec.lock -------------------------------------------------------------------------------- /task_clean_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/HowToDoTriple/HEAD/task_clean_app/pubspec.yaml --------------------------------------------------------------------------------