├── README.md ├── hasura_filter_list ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── hasura_filter_list │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ ├── models │ │ │ └── product_model.dart │ │ │ └── repositories │ │ │ └── home_repository.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ └── modules │ │ └── home │ │ └── repositories │ │ └── home_repository_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── .template_version │ ├── 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 │ ├── window_configuration.cpp │ └── window_configuration.h ├── how_to_do_bloc_scoped ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── how_to_do_bloc_scoped │ │ │ │ │ └── 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 │ ├── main.dart │ └── src │ │ ├── repository │ │ └── my_repository.dart │ │ └── view │ │ ├── home │ │ ├── bloc │ │ │ └── home_bloc.dart │ │ └── home_page.dart │ │ └── product │ │ └── product_page.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── htd_api_crud_observable_model ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htd_api_crud_observable_model │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── usuarios │ │ │ ├── models │ │ │ ├── usuario_model.dart │ │ │ ├── usuario_store_model.dart │ │ │ └── usuario_store_model.g.dart │ │ │ ├── pages │ │ │ └── add_or_update │ │ │ │ ├── add_or_update_controller.dart │ │ │ │ ├── add_or_update_controller.g.dart │ │ │ │ └── add_or_update_page.dart │ │ │ ├── repositories │ │ │ └── usuarios_repository.dart │ │ │ ├── usuarios_controller.dart │ │ │ ├── usuarios_controller.g.dart │ │ │ ├── usuarios_module.dart │ │ │ └── usuarios_page.dart │ └── main.dart ├── printscreen.png ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ └── usuarios │ │ ├── pages │ │ └── add_or_update │ │ │ ├── add_or_update_controller_test.dart │ │ │ └── add_or_update_page_test.dart │ │ ├── repositories │ │ └── usuarios_repository_test.dart │ │ ├── usuarios_controller_test.dart │ │ └── usuarios_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_bottom_navigation_bar ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── how_to_do_bottom_navigation_bar │ │ │ │ │ └── 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 ├── bottom_navigations.PNG ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── calls │ │ │ ├── calls_controller.dart │ │ │ ├── calls_controller.g.dart │ │ │ ├── calls_module.dart │ │ │ └── calls_page.dart │ │ │ ├── chat │ │ │ ├── chat_controller.dart │ │ │ ├── chat_controller.g.dart │ │ │ ├── chat_module.dart │ │ │ └── chat_page.dart │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ └── status │ │ │ ├── status_controller.dart │ │ │ ├── status_controller.g.dart │ │ │ ├── status_module.dart │ │ │ └── status_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── calls │ ├── calls_controller_test.dart │ └── calls_page_test.dart │ ├── chat │ ├── chat_controller_test.dart │ └── chat_page_test.dart │ ├── home │ ├── home_controller_test.dart │ └── home_page_test.dart │ └── status │ ├── status_controller_test.dart │ └── status_page_test.dart ├── htd_bottom_navigation_bar_sem_pageview ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── how_to_do_bottom_navigation_bar │ │ │ │ │ └── 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 ├── bottom_navigations.PNG ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── calls │ │ │ ├── calls_controller.dart │ │ │ ├── calls_controller.g.dart │ │ │ ├── calls_module.dart │ │ │ └── calls_page.dart │ │ │ ├── chat │ │ │ ├── chat_controller.dart │ │ │ ├── chat_controller.g.dart │ │ │ ├── chat_module.dart │ │ │ └── chat_page.dart │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ └── status │ │ │ ├── status_controller.dart │ │ │ ├── status_controller.g.dart │ │ │ ├── status_module.dart │ │ │ └── status_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── calls │ ├── calls_controller_test.dart │ └── calls_page_test.dart │ ├── chat │ ├── chat_controller_test.dart │ └── chat_page_test.dart │ ├── home │ ├── home_controller_test.dart │ └── home_page_test.dart │ └── status │ ├── status_controller_test.dart │ └── status_page_test.dart ├── htd_complete_app ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_complete_app │ │ │ │ │ └── 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 │ │ ├── bloc │ │ │ ├── app_bloc.dart │ │ │ └── app_state.dart │ │ └── modules │ │ │ └── home │ │ │ ├── bloc │ │ │ ├── home_bloc.dart │ │ │ └── home_state.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_bloc_test.dart │ │ └── modules │ │ └── home │ │ ├── home_bloc_test.dart │ │ └── home_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_controllers_with_parameters ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_controllers_with_parameters │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ └── other_module │ │ │ ├── other_module_controller.dart │ │ │ ├── other_module_controller.g.dart │ │ │ ├── other_module_module.dart │ │ │ └── other_module_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── home │ ├── home_controller_test.dart │ └── home_page_test.dart │ └── other_module │ ├── other_module_controller_test.dart │ └── other_module_page_test.dart ├── htd_drawer_navigation ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_drawer_navigation │ │ │ │ │ └── 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 ├── assets │ └── material_design.jpg ├── drawer.PNG ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ ├── items │ │ │ ├── items_controller.dart │ │ │ ├── items_controller.g.dart │ │ │ ├── items_module.dart │ │ │ └── items_page.dart │ │ │ ├── perfil │ │ │ ├── perfil_controller.dart │ │ │ ├── perfil_controller.g.dart │ │ │ ├── perfil_module.dart │ │ │ └── perfil_page.dart │ │ │ └── root │ │ │ ├── drawer │ │ │ ├── drawer_controller.dart │ │ │ ├── drawer_controller.g.dart │ │ │ └── drawer_widget.dart │ │ │ ├── root_controller.dart │ │ │ ├── root_controller.g.dart │ │ │ ├── root_module.dart │ │ │ └── root_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── home │ ├── home_controller_test.dart │ └── home_page_test.dart │ ├── items │ ├── items_controller_test.dart │ └── items_page_test.dart │ ├── perfil │ ├── perfil_controller_test.dart │ └── perfil_page_test.dart │ └── root │ ├── drawer │ ├── drawer_controller_test.dart │ └── drawer_widget_test.dart │ ├── root_controller_test.dart │ └── root_page_test.dart ├── htd_i18n ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_i18n │ │ │ │ │ └── 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 ├── assets │ └── language │ │ ├── de_DE.json │ │ ├── es_ES.json │ │ ├── pt_BR.json │ │ └── us_EN.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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ └── splash │ │ │ ├── splash_controller.dart │ │ │ ├── splash_controller.g.dart │ │ │ ├── splash_module.dart │ │ │ └── splash_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── sample.png ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart │ │ └── splash │ │ ├── splash_controller_test.dart │ │ └── splash_page_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── .template_version │ ├── 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 │ ├── window_configuration.cpp │ └── window_configuration.h ├── htd_login_page_navigation ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_login_page_navigation │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── calls │ │ │ │ ├── calls_controller.dart │ │ │ │ ├── calls_controller.g.dart │ │ │ │ ├── calls_module.dart │ │ │ │ └── calls_page.dart │ │ │ ├── chat │ │ │ │ ├── chat_controller.dart │ │ │ │ ├── chat_controller.g.dart │ │ │ │ ├── chat_module.dart │ │ │ │ └── chat_page.dart │ │ │ ├── home │ │ │ │ ├── home_controller.dart │ │ │ │ ├── home_controller.g.dart │ │ │ │ ├── home_module.dart │ │ │ │ └── home_page.dart │ │ │ ├── login │ │ │ │ ├── login_controller.dart │ │ │ │ ├── login_controller.g.dart │ │ │ │ ├── login_module.dart │ │ │ │ └── login_page.dart │ │ │ ├── splash │ │ │ │ ├── splash_controller.dart │ │ │ │ ├── splash_controller.g.dart │ │ │ │ ├── splash_module.dart │ │ │ │ └── splash_page.dart │ │ │ └── status │ │ │ │ ├── status_controller.dart │ │ │ │ ├── status_controller.g.dart │ │ │ │ ├── status_module.dart │ │ │ │ └── status_page.dart │ │ └── shared │ │ │ ├── auth_store.dart │ │ │ └── auth_store.g.dart │ └── main.dart ├── printscreen.png ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── calls │ ├── calls_controller_test.dart │ └── calls_page_test.dart │ ├── chat │ ├── chat_controller_test.dart │ └── chat_page_test.dart │ ├── home │ ├── home_controller_test.dart │ └── home_page_test.dart │ ├── login │ ├── login_controller_test.dart │ └── login_page_test.dart │ ├── splash │ ├── splash_controller_test.dart │ └── splash_page_test.dart │ └── status │ ├── status_controller_test.dart │ └── status_page_test.dart ├── htd_loja_stores ├── .gitignore ├── .metadata ├── .slidy │ ├── 1589499101255 │ ├── 1589499139304 │ ├── 1589499154205 │ ├── 1589499194904 │ ├── 1589500263134 │ ├── 1590150214150 │ ├── 1590156417420 │ ├── 1590252505346 │ ├── 1590252529780 │ ├── 1590252606044 │ ├── 1590252620814 │ ├── 1590255875586 │ ├── 1590260265637 │ ├── 1590260342822 │ ├── 1590260358570 │ ├── 1590260381123 │ └── 1590264836658 ├── .vscode │ └── settings.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── flutterando │ │ │ │ │ └── htd_loja_store │ │ │ │ │ └── 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 ├── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── auth │ │ │ │ ├── auth_controller.dart │ │ │ │ ├── auth_controller.g.dart │ │ │ │ ├── auth_module.dart │ │ │ │ └── auth_page.dart │ │ │ ├── compra │ │ │ │ ├── compra_controller.dart │ │ │ │ ├── compra_controller.g.dart │ │ │ │ ├── compra_module.dart │ │ │ │ ├── compra_page.dart │ │ │ │ └── pages │ │ │ │ │ └── carrinho │ │ │ │ │ ├── carrinho_controller.dart │ │ │ │ │ ├── carrinho_controller.g.dart │ │ │ │ │ ├── carrinho_module.dart │ │ │ │ │ ├── carrinho_page.dart │ │ │ │ │ └── widgets │ │ │ │ │ ├── carrinho_lista_produtos │ │ │ │ │ ├── carrinho_lista_produtos_controller.dart │ │ │ │ │ ├── carrinho_lista_produtos_controller.g.dart │ │ │ │ │ └── carrinho_lista_produtos_widget.dart │ │ │ │ │ └── carrinho_total │ │ │ │ │ ├── carrinho_total_controller.dart │ │ │ │ │ ├── carrinho_total_controller.g.dart │ │ │ │ │ └── carrinho_total_widget.dart │ │ │ ├── exemplo │ │ │ │ ├── exemplo_controller.dart │ │ │ │ ├── exemplo_controller.g.dart │ │ │ │ ├── exemplo_module.dart │ │ │ │ └── exemplo_page.dart │ │ │ ├── loja │ │ │ │ ├── loja_controller.dart │ │ │ │ ├── loja_controller.g.dart │ │ │ │ ├── loja_module.dart │ │ │ │ ├── loja_page.dart │ │ │ │ ├── models │ │ │ │ │ └── loja_model.dart │ │ │ │ └── repositories │ │ │ │ │ └── loja_repository.dart │ │ │ ├── pagamento │ │ │ │ ├── models │ │ │ │ │ └── pagamento_model.dart │ │ │ │ ├── pagamento_controller.dart │ │ │ │ ├── pagamento_controller.g.dart │ │ │ │ ├── pagamento_module.dart │ │ │ │ ├── pagamento_page.dart │ │ │ │ ├── pages │ │ │ │ │ ├── dados_endereco │ │ │ │ │ │ ├── dados_endereco_controller.dart │ │ │ │ │ │ ├── dados_endereco_controller.g.dart │ │ │ │ │ │ └── dados_endereco_page.dart │ │ │ │ │ ├── dados_pagamento │ │ │ │ │ │ ├── dados_pagamento_controller.dart │ │ │ │ │ │ ├── dados_pagamento_controller.g.dart │ │ │ │ │ │ └── dados_pagamento_page.dart │ │ │ │ │ └── pagamento_sucesso │ │ │ │ │ │ ├── pagamento_sucesso_controller.dart │ │ │ │ │ │ ├── pagamento_sucesso_controller.g.dart │ │ │ │ │ │ └── pagamento_sucesso_page.dart │ │ │ │ └── stores │ │ │ │ │ ├── pagamento_store.dart │ │ │ │ │ └── pagamento_store.g.dart │ │ │ └── produto │ │ │ │ ├── models │ │ │ │ └── produto_model.dart │ │ │ │ ├── produto_controller.dart │ │ │ │ ├── produto_controller.g.dart │ │ │ │ ├── produto_module.dart │ │ │ │ ├── produto_page.dart │ │ │ │ └── repositories │ │ │ │ └── produto_repository.dart │ │ └── shared │ │ │ ├── models │ │ │ └── usuario │ │ │ │ └── usuario_model.dart │ │ │ └── stores │ │ │ └── auth │ │ │ ├── auth_store.dart │ │ │ └── auth_store.g.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── auth │ │ ├── auth_controller_test.dart │ │ └── auth_page_test.dart │ │ ├── compra │ │ ├── compra_controller_test.dart │ │ ├── compra_page_test.dart │ │ └── pages │ │ │ └── carrinho │ │ │ ├── carrinho_controller_test.dart │ │ │ ├── carrinho_page_test.dart │ │ │ └── widgets │ │ │ ├── carrinho_lista_produtos │ │ │ ├── carrinho_lista_produtos_controller_test.dart │ │ │ └── carrinho_lista_produtos_widget_test.dart │ │ │ └── carrinho_total │ │ │ ├── carrinho_total_controller_test.dart │ │ │ └── carrinho_total_widget_test.dart │ │ ├── exemplo │ │ ├── exemplo_controller_test.dart │ │ └── exemplo_page_test.dart │ │ ├── loja │ │ ├── loja_controller_test.dart │ │ ├── loja_page_test.dart │ │ └── repositories │ │ │ └── loja_repository_test.dart │ │ ├── pagamento │ │ ├── pagamento_controller_test.dart │ │ ├── pagamento_page_test.dart │ │ └── pages │ │ │ ├── dados_endereco │ │ │ ├── dados_endereco_controller_test.dart │ │ │ └── dados_endereco_page_test.dart │ │ │ ├── dados_pagamento │ │ │ ├── dados_pagamento_controller_test.dart │ │ │ └── dados_pagamento_page_test.dart │ │ │ └── pagamento_sucesso │ │ │ ├── pagamento_sucesso_controller_test.dart │ │ │ └── pagamento_sucesso_page_test.dart │ │ └── produto │ │ ├── produto_controller_test.dart │ │ ├── produto_page_test.dart │ │ └── repositories │ │ └── produto_repository_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_loja_stores_with_cart ├── .gitignore ├── .metadata ├── .slidy │ ├── 1589499101255 │ ├── 1589499139304 │ ├── 1589499154205 │ ├── 1589499194904 │ ├── 1589500263134 │ ├── 1590150214150 │ ├── 1590156417420 │ ├── 1590252505346 │ ├── 1590252529780 │ ├── 1590252606044 │ ├── 1590252620814 │ ├── 1590255875586 │ ├── 1590260265637 │ ├── 1590260342822 │ ├── 1590260358570 │ ├── 1590260381123 │ └── 1590264836658 ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── flutterando │ │ │ │ │ └── htd_loja_store │ │ │ │ │ └── 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 ├── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── auth │ │ │ │ ├── auth_controller.dart │ │ │ │ ├── auth_controller.g.dart │ │ │ │ ├── auth_module.dart │ │ │ │ └── auth_page.dart │ │ │ ├── compra │ │ │ │ ├── compra_controller.dart │ │ │ │ ├── compra_controller.g.dart │ │ │ │ ├── compra_module.dart │ │ │ │ ├── compra_page.dart │ │ │ │ └── pages │ │ │ │ │ └── carrinho │ │ │ │ │ ├── carrinho_controller.dart │ │ │ │ │ ├── carrinho_controller.g.dart │ │ │ │ │ ├── carrinho_module.dart │ │ │ │ │ ├── carrinho_page.dart │ │ │ │ │ └── widgets │ │ │ │ │ ├── carrinho_lista_produtos │ │ │ │ │ ├── carrinho_lista_produtos_controller.dart │ │ │ │ │ ├── carrinho_lista_produtos_controller.g.dart │ │ │ │ │ └── carrinho_lista_produtos_widget.dart │ │ │ │ │ └── carrinho_total │ │ │ │ │ ├── carrinho_total_controller.dart │ │ │ │ │ ├── carrinho_total_controller.g.dart │ │ │ │ │ └── carrinho_total_widget.dart │ │ │ ├── exemplo │ │ │ │ ├── exemplo_controller.dart │ │ │ │ ├── exemplo_controller.g.dart │ │ │ │ ├── exemplo_module.dart │ │ │ │ └── exemplo_page.dart │ │ │ ├── loja │ │ │ │ ├── loja_controller.dart │ │ │ │ ├── loja_controller.g.dart │ │ │ │ ├── loja_module.dart │ │ │ │ ├── loja_page.dart │ │ │ │ ├── models │ │ │ │ │ └── loja_model.dart │ │ │ │ └── repositories │ │ │ │ │ └── loja_repository.dart │ │ │ ├── pagamento │ │ │ │ ├── models │ │ │ │ │ └── pagamento_model.dart │ │ │ │ ├── pagamento_controller.dart │ │ │ │ ├── pagamento_controller.g.dart │ │ │ │ ├── pagamento_module.dart │ │ │ │ ├── pagamento_page.dart │ │ │ │ ├── pages │ │ │ │ │ ├── dados_endereco │ │ │ │ │ │ ├── dados_endereco_controller.dart │ │ │ │ │ │ ├── dados_endereco_controller.g.dart │ │ │ │ │ │ └── dados_endereco_page.dart │ │ │ │ │ ├── dados_pagamento │ │ │ │ │ │ ├── dados_pagamento_controller.dart │ │ │ │ │ │ ├── dados_pagamento_controller.g.dart │ │ │ │ │ │ └── dados_pagamento_page.dart │ │ │ │ │ └── pagamento_sucesso │ │ │ │ │ │ ├── pagamento_sucesso_controller.dart │ │ │ │ │ │ ├── pagamento_sucesso_controller.g.dart │ │ │ │ │ │ └── pagamento_sucesso_page.dart │ │ │ │ └── stores │ │ │ │ │ ├── pagamento_store.dart │ │ │ │ │ └── pagamento_store.g.dart │ │ │ └── produto │ │ │ │ ├── models │ │ │ │ └── produto_model.dart │ │ │ │ ├── produto_controller.dart │ │ │ │ ├── produto_controller.g.dart │ │ │ │ ├── produto_module.dart │ │ │ │ ├── produto_page.dart │ │ │ │ └── repositories │ │ │ │ └── produto_repository.dart │ │ └── shared │ │ │ ├── models │ │ │ ├── produto_carrinho │ │ │ │ ├── produto_carrinho.dart │ │ │ │ └── produto_carrinho.g.dart │ │ │ └── usuario │ │ │ │ └── usuario_model.dart │ │ │ └── stores │ │ │ ├── auth │ │ │ ├── auth_store.dart │ │ │ └── auth_store.g.dart │ │ │ └── carrinho │ │ │ ├── carrinho_store.dart │ │ │ └── carrinho_store.g.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── auth │ │ ├── auth_controller_test.dart │ │ └── auth_page_test.dart │ │ ├── compra │ │ ├── compra_controller_test.dart │ │ ├── compra_page_test.dart │ │ └── pages │ │ │ └── carrinho │ │ │ ├── carrinho_controller_test.dart │ │ │ ├── carrinho_page_test.dart │ │ │ └── widgets │ │ │ ├── carrinho_lista_produtos │ │ │ ├── carrinho_lista_produtos_controller_test.dart │ │ │ └── carrinho_lista_produtos_widget_test.dart │ │ │ └── carrinho_total │ │ │ ├── carrinho_total_controller_test.dart │ │ │ └── carrinho_total_widget_test.dart │ │ ├── exemplo │ │ ├── exemplo_controller_test.dart │ │ └── exemplo_page_test.dart │ │ ├── loja │ │ ├── loja_controller_test.dart │ │ ├── loja_page_test.dart │ │ └── repositories │ │ │ └── loja_repository_test.dart │ │ ├── pagamento │ │ ├── pagamento_controller_test.dart │ │ ├── pagamento_page_test.dart │ │ └── pages │ │ │ ├── dados_endereco │ │ │ ├── dados_endereco_controller_test.dart │ │ │ └── dados_endereco_page_test.dart │ │ │ ├── dados_pagamento │ │ │ ├── dados_pagamento_controller_test.dart │ │ │ └── dados_pagamento_page_test.dart │ │ │ └── pagamento_sucesso │ │ │ ├── pagamento_sucesso_controller_test.dart │ │ │ └── pagamento_sucesso_page_test.dart │ │ └── produto │ │ ├── produto_controller_test.dart │ │ ├── produto_page_test.dart │ │ └── repositories │ │ └── produto_repository_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_maps ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htd_maps │ │ │ │ │ └── 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 ├── assets │ └── marker.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ └── main.dart ├── printscreen.png ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ └── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart └── web │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_modular_guards ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_modular_guards │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── admin │ │ │ │ ├── admin_controller.dart │ │ │ │ ├── admin_controller.g.dart │ │ │ │ ├── admin_module.dart │ │ │ │ └── admin_page.dart │ │ │ ├── auth │ │ │ │ ├── auth_controller.dart │ │ │ │ ├── auth_controller.g.dart │ │ │ │ ├── auth_module.dart │ │ │ │ └── auth_page.dart │ │ │ ├── home │ │ │ │ ├── home_controller.dart │ │ │ │ ├── home_controller.g.dart │ │ │ │ ├── home_module.dart │ │ │ │ └── home_page.dart │ │ │ └── splash │ │ │ │ ├── splash_controller.dart │ │ │ │ ├── splash_controller.g.dart │ │ │ │ ├── splash_module.dart │ │ │ │ └── splash_page.dart │ │ └── shared │ │ │ └── store │ │ │ ├── auth_store.dart │ │ │ └── auth_store.g.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── admin │ │ ├── admin_controller_test.dart │ │ └── admin_page_test.dart │ │ ├── auth │ │ ├── auth_controller_test.dart │ │ └── auth_page_test.dart │ │ ├── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart │ │ └── splash │ │ ├── splash_controller_test.dart │ │ └── splash_page_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── .template_version │ ├── 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 │ ├── window_configuration.cpp │ └── window_configuration.h ├── htd_modular_navigation_many_modules ├── .gitignore ├── .metadata ├── .slidy │ ├── 1589565712941 │ ├── 1589565842112 │ ├── 1589566299572 │ ├── 1589566317759 │ └── 1589566765392 ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htd_modular_navigation_many_modules │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ ├── module_g │ │ │ ├── module_g_controller.dart │ │ │ ├── module_g_controller.g.dart │ │ │ ├── module_g_module.dart │ │ │ └── module_g_page.dart │ │ │ └── modulo_01 │ │ │ ├── modulo_01_controller.dart │ │ │ ├── modulo_01_controller.g.dart │ │ │ ├── modulo_01_module.dart │ │ │ └── modulo_01_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart │ │ ├── module_g │ │ ├── module_g_controller_test.dart │ │ └── module_g_page_test.dart │ │ └── modulo_01 │ │ ├── modulo_01_controller_test.dart │ │ └── modulo_01_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_multi_dropdowns ├── .gitignore ├── .metadata ├── .slidy │ ├── 1585443761635 │ └── 1585444019788 ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htd_multi_dropdowns │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ └── widgets │ │ │ └── drop_down_custom │ │ │ ├── drop_down_custom_controller.dart │ │ │ ├── drop_down_custom_controller.g.dart │ │ │ └── drop_down_custom_widget.dart │ └── main.dart ├── printscreen.png ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ └── home │ │ ├── home_controller_test.dart │ │ ├── home_page_test.dart │ │ └── widgets │ │ └── drop_down_custom │ │ ├── drop_down_custom_controller_test.dart │ │ └── drop_down_custom_widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_navigations ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_navigations │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ └── pages │ │ │ ├── page1 │ │ │ ├── page1_controller.dart │ │ │ ├── page1_controller.g.dart │ │ │ └── page1_page.dart │ │ │ ├── page2 │ │ │ ├── page2_controller.dart │ │ │ ├── page2_controller.g.dart │ │ │ └── page2_page.dart │ │ │ └── page3 │ │ │ ├── page3_controller.dart │ │ │ ├── page3_controller.g.dart │ │ │ └── page3_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ └── home │ ├── home_controller_test.dart │ ├── home_page_test.dart │ └── pages │ ├── page1 │ ├── page1_controller_test.dart │ └── page1_page_test.dart │ ├── page2 │ ├── page2_controller_test.dart │ └── page2_page_test.dart │ └── page3 │ ├── page3_controller_test.dart │ └── page3_page_test.dart ├── htd_observable_list_search ├── .gitignore ├── .metadata ├── .slidy │ └── 1589390111381 ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htd_observable_list_search │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── helper │ │ │ └── observable_list_search │ │ │ │ ├── observable_list_search.dart │ │ │ │ └── observable_list_search.g.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ ├── models │ │ │ ├── pkm_model.dart │ │ │ └── pokemon_model.dart │ │ │ └── repositories │ │ │ └── home_repository.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ └── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_package_oriented ├── htd_main_app.code-workspace ├── htd_main_app │ ├── .gitignore │ ├── .metadata │ ├── .slidy │ │ └── 1589590311322 │ ├── .vscode │ │ └── launch.json │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── google-services.json │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── br │ │ │ │ │ │ └── flutterando │ │ │ │ │ │ └── htd_main_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_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── home │ │ │ │ ├── home_controller.dart │ │ │ │ ├── home_controller.g.dart │ │ │ │ ├── home_module.dart │ │ │ │ └── home_page.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── test │ │ └── app │ │ │ ├── app_controller_test.dart │ │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller_test.dart │ │ │ └── home_page_test.dart │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ └── manifest.json └── modules │ ├── compra_estoque_online │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── example_lib_main_dart.xml │ │ └── workspace.xml │ ├── .metadata │ ├── .slidy │ │ ├── 1589590758448 │ │ ├── 1589590807513 │ │ └── 1589590820349 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── br │ │ │ └── flutterando │ │ │ └── compra_estoque_online │ │ │ └── CompraEstoqueOnlinePlugin.kt │ ├── compra_estoque_online.iml │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── CompraEstoqueOnlinePlugin.h │ │ │ ├── CompraEstoqueOnlinePlugin.m │ │ │ └── SwiftCompraEstoqueOnlinePlugin.swift │ │ └── compra_estoque_online.podspec │ ├── lib │ │ ├── app │ │ │ ├── app_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── compra_estoque_online │ │ │ │ ├── compra_estoque_online_controller.dart │ │ │ │ ├── compra_estoque_online_controller.g.dart │ │ │ │ ├── compra_estoque_online_module.dart │ │ │ │ └── compra_estoque_online_page.dart │ │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml │ ├── controle_financeiro │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── example_lib_main_dart.xml │ │ └── workspace.xml │ ├── .metadata │ ├── .slidy │ │ ├── 1589591118146 │ │ ├── 1589591204264 │ │ ├── 1589591771086 │ │ └── 1589591805151 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── br │ │ │ └── flutterando │ │ │ └── controle_financeiro │ │ │ └── ControleFinanceiroPlugin.kt │ ├── controle_financeiro.iml │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── ControleFinanceiroPlugin.h │ │ │ ├── ControleFinanceiroPlugin.m │ │ │ └── SwiftControleFinanceiroPlugin.swift │ │ └── controle_financeiro.podspec │ ├── lib │ │ ├── app │ │ │ ├── app_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── controle_financeiro │ │ │ │ ├── controle_financeiro_controller.dart │ │ │ │ ├── controle_financeiro_controller.g.dart │ │ │ │ ├── controle_financeiro_module.dart │ │ │ │ └── controle_financeiro_page.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── app │ │ └── app_controller_test.dart │ ├── controle_patrimonial │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── example_lib_main_dart.xml │ │ └── workspace.xml │ ├── .metadata │ ├── .slidy │ │ ├── 1589591493369 │ │ └── 1589591620491 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── br │ │ │ └── flutterando │ │ │ └── controle_patrimonial │ │ │ └── ControlePatrimonialPlugin.kt │ ├── controle_patrimonial.iml │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── ControlePatrimonialPlugin.h │ │ │ ├── ControlePatrimonialPlugin.m │ │ │ └── SwiftControlePatrimonialPlugin.swift │ │ └── controle_patrimonial.podspec │ ├── lib │ │ ├── app │ │ │ ├── app_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── controle_patrimonial │ │ │ │ ├── controle_patrimonial_controller.dart │ │ │ │ ├── controle_patrimonial_controller.g.dart │ │ │ │ ├── controle_patrimonial_module.dart │ │ │ │ └── controle_patrimonial_page.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── app │ │ └── app_controller_test.dart │ ├── crm │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── example_lib_main_dart.xml │ │ └── workspace.xml │ ├── .metadata │ ├── .slidy │ │ ├── 1589605743453 │ │ └── 1589605817696 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── br │ │ │ └── flutterando │ │ │ └── crm │ │ │ └── CrmPlugin.kt │ ├── crm.iml │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── CrmPlugin.h │ │ │ ├── CrmPlugin.m │ │ │ └── SwiftCrmPlugin.swift │ │ └── crm.podspec │ ├── lib │ │ ├── app │ │ │ ├── app_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── crm │ │ │ │ ├── crm_controller.dart │ │ │ │ ├── crm_controller.g.dart │ │ │ │ ├── crm_module.dart │ │ │ │ └── crm_page.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── app │ │ └── app_controller_test.dart │ ├── gestao_compras │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── example_lib_main_dart.xml │ │ └── workspace.xml │ ├── .metadata │ ├── .slidy │ │ ├── 1589606012927 │ │ └── 1589606059803 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── br │ │ │ └── flutterando │ │ │ └── gestao_compras │ │ │ └── GestaoComprasPlugin.kt │ ├── gestao_compras.iml │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── GestaoComprasPlugin.h │ │ │ ├── GestaoComprasPlugin.m │ │ │ └── SwiftGestaoComprasPlugin.swift │ │ └── gestao_compras.podspec │ ├── lib │ │ ├── app │ │ │ ├── app_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── gestao_compras │ │ │ │ ├── gestao_compras_controller.dart │ │ │ │ ├── gestao_compras_controller.g.dart │ │ │ │ ├── gestao_compras_module.dart │ │ │ │ └── gestao_compras_page.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── app │ │ └── app_controller_test.dart │ ├── gestao_projetos │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .idea │ │ ├── libraries │ │ │ ├── Dart_SDK.xml │ │ │ └── Flutter_for_Android.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── example_lib_main_dart.xml │ │ └── workspace.xml │ ├── .metadata │ ├── .slidy │ │ ├── 1589606291706 │ │ └── 1589606442631 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── plugins │ │ │ │ └── GeneratedPluginRegistrant.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ └── br │ │ │ └── flutterando │ │ │ └── gestao_projetos │ │ │ └── GestaoProjetosPlugin.kt │ ├── gestao_projetos.iml │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ ├── GestaoProjetosPlugin.h │ │ │ ├── GestaoProjetosPlugin.m │ │ │ └── SwiftGestaoProjetosPlugin.swift │ │ └── gestao_projetos.podspec │ ├── lib │ │ ├── app │ │ │ ├── app_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── gestao_projetos │ │ │ │ ├── gestao_projetos_controller.dart │ │ │ │ ├── gestao_projetos_controller.g.dart │ │ │ │ ├── gestao_projetos_module.dart │ │ │ │ └── gestao_projetos_page.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── app │ │ └── app_controller_test.dart │ └── vendas_faturamento │ ├── .flutter-plugins │ ├── .flutter-plugins-dependencies │ ├── .gitignore │ ├── .idea │ ├── libraries │ │ ├── Dart_SDK.xml │ │ └── Flutter_for_Android.xml │ ├── modules.xml │ ├── runConfigurations │ │ └── example_lib_main_dart.xml │ └── workspace.xml │ ├── .metadata │ ├── .slidy │ ├── 1589607016544 │ └── 1589607126337 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── android │ ├── .gitignore │ ├── app │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── io │ │ │ └── flutter │ │ │ └── plugins │ │ │ └── GeneratedPluginRegistrant.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── kotlin │ │ └── br │ │ └── flutterando │ │ └── vendas_faturamento │ │ └── VendasFaturamentoPlugin.kt │ ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ ├── SwiftVendasFaturamentoPlugin.swift │ │ ├── VendasFaturamentoPlugin.h │ │ └── VendasFaturamentoPlugin.m │ └── vendas_faturamento.podspec │ ├── lib │ ├── app │ │ ├── app_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── vendas_faturamentos │ │ │ ├── vendas_faturamentos_controller.dart │ │ │ ├── vendas_faturamentos_controller.g.dart │ │ │ ├── vendas_faturamentos_module.dart │ │ │ └── vendas_faturamentos_page.dart │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── test │ └── app │ │ └── app_controller_test.dart │ └── vendas_faturamento.iml ├── htd_quick_action ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_quick_action │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ └── module_01 │ │ │ ├── module_01_controller.dart │ │ │ ├── module_01_controller.g.dart │ │ │ ├── module_01_module.dart │ │ │ └── module_01_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart │ │ └── module_01 │ │ ├── module_01_controller_test.dart │ │ └── module_01_page_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── .template_version │ ├── 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 │ ├── window_configuration.cpp │ └── window_configuration.h ├── htd_reactive_list ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_reactive_list │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ └── models │ │ │ ├── categoria_model.dart │ │ │ ├── produto_store.dart │ │ │ └── produto_store.g.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ └── home │ ├── home_controller_test.dart │ └── home_page_test.dart ├── htd_reactive_model ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_reactive_model │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ └── home │ │ │ │ ├── home_controller.dart │ │ │ │ ├── home_controller.g.dart │ │ │ │ ├── home_module.dart │ │ │ │ ├── home_page.dart │ │ │ │ ├── models │ │ │ │ ├── user_store.dart │ │ │ │ └── user_store.g.dart │ │ │ │ └── widgets │ │ │ │ ├── blue_card │ │ │ │ └── blue_card_widget.dart │ │ │ │ └── red_card │ │ │ │ └── red_card_widget.dart │ │ └── shared │ │ │ └── extensions_date.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ └── home │ ├── home_controller_test.dart │ ├── home_page_test.dart │ └── widgets │ ├── blue_card │ └── blue_card_widget_test.dart │ └── red_card │ └── red_card_widget_test.dart ├── htd_rout_outlets ├── .gitignore ├── .metadata ├── .slidy │ ├── 1589087104170 │ ├── 1589087331559 │ ├── 1589088168023 │ ├── 1589088183280 │ ├── 1589088216474 │ ├── 1589088232886 │ ├── 1589089443242 │ └── 1589089476412 ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htd_rout_outlets │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── root │ │ │ ├── calls │ │ │ ├── calls_controller.dart │ │ │ ├── calls_controller.g.dart │ │ │ ├── calls_module.dart │ │ │ └── calls_page.dart │ │ │ ├── chat │ │ │ ├── chat_controller.dart │ │ │ ├── chat_controller.g.dart │ │ │ ├── chat_group │ │ │ │ ├── chat_group_controller.dart │ │ │ │ ├── chat_group_controller.g.dart │ │ │ │ ├── chat_group_module.dart │ │ │ │ └── chat_group_page.dart │ │ │ ├── chat_module.dart │ │ │ ├── chat_page.dart │ │ │ └── chat_user │ │ │ │ ├── chat_user_controller.dart │ │ │ │ ├── chat_user_controller.g.dart │ │ │ │ ├── chat_user_module.dart │ │ │ │ └── chat_user_page.dart │ │ │ ├── root_controller.dart │ │ │ ├── root_controller.g.dart │ │ │ ├── root_module.dart │ │ │ ├── root_page.dart │ │ │ └── status │ │ │ ├── status_controller.dart │ │ │ ├── status_controller.g.dart │ │ │ ├── status_module.dart │ │ │ └── status_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ └── root │ │ ├── calls │ │ ├── calls_controller_test.dart │ │ └── calls_page_test.dart │ │ ├── chat │ │ ├── chat_controller_test.dart │ │ ├── chat_group │ │ │ ├── chat_group_controller_test.dart │ │ │ └── chat_group_page_test.dart │ │ ├── chat_page_test.dart │ │ └── chat_user │ │ │ ├── chat_user_controller_test.dart │ │ │ └── chat_user_page_test.dart │ │ ├── root_controller_test.dart │ │ ├── root_page_test.dart │ │ └── status │ │ ├── status_controller_test.dart │ │ └── status_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htd_search_list ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_search_list │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ └── main.dart ├── printscreen.png ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ └── home │ ├── home_controller_test.dart │ └── home_page_test.dart ├── htd_search_list_bloc ├── .gitignore ├── .metadata ├── .slidy │ ├── 1585753927739 │ ├── 1585753960439 │ ├── 1585753989341 │ └── 1585754184884 ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_search_list_bloc │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_bloc.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_bloc.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_bloc_test.dart │ └── modules │ └── home │ ├── home_bloc_test.dart │ └── home_page_test.dart ├── htd_set_state ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_set_state │ │ │ │ │ └── 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 │ ├── main.dart │ └── src │ │ └── pages │ │ ├── set_state_pages │ │ ├── home_page.dart │ │ └── home_page_animated.dart │ │ ├── state_notifier │ │ ├── home_page_state_notifier.dart │ │ └── home_state_notifier_controller.dart │ │ └── value_notifier_pages │ │ ├── home_page_complex_value_notifier.dart │ │ └── home_page_value_notifier.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── htd_steps_mobx ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── htd_steps_mobx │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ └── steps │ │ │ ├── steps │ │ │ ├── step01 │ │ │ │ ├── step01_controller.dart │ │ │ │ ├── step01_controller.g.dart │ │ │ │ └── step01_page.dart │ │ │ ├── step02 │ │ │ │ ├── step02_controller.dart │ │ │ │ ├── step02_controller.g.dart │ │ │ │ └── step02_page.dart │ │ │ ├── step03 │ │ │ │ ├── step03_controller.dart │ │ │ │ ├── step03_controller.g.dart │ │ │ │ └── step03_page.dart │ │ │ ├── user_store.dart │ │ │ └── user_store.g.dart │ │ │ ├── steps_controller.dart │ │ │ ├── steps_controller.g.dart │ │ │ ├── steps_module.dart │ │ │ └── steps_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── home │ ├── home_controller_test.dart │ ├── home_page_test.dart │ └── steps │ │ ├── step │ │ ├── step_controller_test.dart │ │ └── step_page_test.dart │ │ ├── step01 │ │ ├── step01_controller_test.dart │ │ └── step01_page_test.dart │ │ ├── step02 │ │ ├── step02_controller_test.dart │ │ └── step02_page_test.dart │ │ └── step03 │ │ ├── step03_controller_test.dart │ │ └── step03_page_test.dart │ └── steps │ ├── steps_controller_test.dart │ └── steps_page_test.dart ├── htd_will_pop_scope ├── .gitignore ├── .metadata ├── .slidy │ ├── 1586655987777 │ ├── 1586656101679 │ └── 1586656222288 ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htd_will_pop_scope │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ └── new │ │ │ ├── new_controller.dart │ │ │ ├── new_controller.g.dart │ │ │ ├── new_module.dart │ │ │ └── new_page.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart │ │ └── new │ │ ├── new_controller_test.dart │ │ └── new_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── htp_cool_login ├── .gitignore ├── .metadata ├── .slidy │ ├── 1585184776392 │ └── 1585184967682 ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── htp_cool_login │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── login │ │ │ ├── login_controller.dart │ │ │ ├── login_controller.g.dart │ │ │ ├── login_module.dart │ │ │ └── login_page.dart │ └── main.dart ├── printscreen.png ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ └── login │ │ ├── login_controller_test.dart │ │ └── login_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── hwd_modules ├── auth_module │ ├── .gitignore │ ├── .metadata │ ├── .slidy │ │ ├── 1586634153539 │ │ ├── 1586634228353 │ │ └── 1586634241133 │ ├── README.md │ ├── htdworkingwithmodule.iml │ ├── htdworkingwithmodule_android.iml │ ├── lib │ │ ├── app │ │ │ ├── app_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ ├── app_widget.dart │ │ │ └── modules │ │ │ │ └── auth │ │ │ │ ├── auth_controller.dart │ │ │ │ ├── auth_controller.g.dart │ │ │ │ ├── auth_module.dart │ │ │ │ └── auth_page.dart │ │ └── main.dart │ ├── pubspec.lock │ └── pubspec.yaml ├── htd_main_app │ ├── .gitignore │ ├── .metadata │ ├── .slidy │ │ └── 1586635726773 │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── br │ │ │ │ │ │ └── htd_main_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_controller.dart │ │ │ ├── app_controller.g.dart │ │ │ ├── app_module.dart │ │ │ └── app_widget.dart │ │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ └── Icon-512.png │ │ ├── index.html │ │ └── manifest.json └── product_module │ ├── .gitignore │ ├── .metadata │ ├── .slidy │ ├── 1586746391683 │ └── 1586746448292 │ ├── README.md │ ├── lib │ ├── app │ │ ├── app_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── product │ │ │ ├── product_controller.dart │ │ │ ├── product_controller.g.dart │ │ │ ├── product_module.dart │ │ │ └── product_page.dart │ └── main.dart │ ├── productmodule.iml │ ├── productmodule_android.iml │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── app │ └── app_controller_test.dart ├── hwt_consume_future_api ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── hwt_consume_future_api │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── detail │ │ │ ├── detail_controller.dart │ │ │ ├── detail_controller.g.dart │ │ │ ├── detail_module.dart │ │ │ └── detail_page.dart │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ ├── models │ │ │ └── pokemon_model.dart │ │ │ └── repositories │ │ │ └── home_repository.dart │ └── main.dart ├── printscreen.png ├── pubspec.lock ├── pubspec.yaml ├── test │ ├── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ │ ├── detail │ │ │ ├── detail_controller_test.dart │ │ │ └── detail_page_test.dart │ │ │ └── home │ │ │ ├── home_controller_test.dart │ │ │ ├── home_page_test.dart │ │ │ └── repositories │ │ │ └── home_repository_test.dart │ └── widget_test.dart └── web │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── hwt_consume_infinity_scroll ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── _HomePageState() ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── hwt_consume_infinity_scroll │ │ │ │ │ └── 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 │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── 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_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ ├── models │ │ │ │ └── pokemon_model.dart │ │ │ └── repositories │ │ │ │ └── home_repository.dart │ │ │ └── services │ │ │ └── testes_service.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── home │ ├── home_controller_test.dart │ ├── home_page_test.dart │ └── repositories │ │ └── home_repository_test.dart │ └── services │ └── testes_service_test.dart ├── hwt_hasura_filter_stream ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── hwt_hasura_filter_stream │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ ├── home_page.dart │ │ │ ├── model │ │ │ └── product.dart │ │ │ └── repository │ │ │ └── home_repository.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ └── home │ ├── home_controller_test.dart │ ├── home_page_test.dart │ └── home_repository_test.dart ├── loja ├── .gitignore ├── .metadata ├── .slidy │ ├── 1589499101255 │ ├── 1589499139304 │ ├── 1589499154205 │ ├── 1589499194904 │ └── 1589500263134 ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── br │ │ │ │ │ └── flutterando │ │ │ │ │ └── loja │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── compra │ │ │ │ ├── compra_controller.dart │ │ │ │ ├── compra_controller.g.dart │ │ │ │ ├── compra_module.dart │ │ │ │ ├── compra_page.dart │ │ │ │ └── pages │ │ │ │ │ └── carrinho │ │ │ │ │ ├── carrinho_controller.dart │ │ │ │ │ ├── carrinho_controller.g.dart │ │ │ │ │ ├── carrinho_module.dart │ │ │ │ │ └── carrinho_page.dart │ │ │ ├── loja │ │ │ │ ├── loja_controller.dart │ │ │ │ ├── loja_controller.g.dart │ │ │ │ ├── loja_module.dart │ │ │ │ └── loja_page.dart │ │ │ └── produto │ │ │ │ ├── produto_controller.dart │ │ │ │ ├── produto_controller.g.dart │ │ │ │ ├── produto_module.dart │ │ │ │ └── produto_page.dart │ │ └── shared │ │ │ └── produto_model.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml ├── test │ └── app │ │ ├── app_controller_test.dart │ │ └── modules │ │ ├── compra │ │ ├── compra_controller_test.dart │ │ ├── compra_page_test.dart │ │ └── pages │ │ │ └── carrinho │ │ │ ├── carrinho_controller_test.dart │ │ │ └── carrinho_page_test.dart │ │ ├── home │ │ ├── home_controller_test.dart │ │ └── home_page_test.dart │ │ ├── loja │ │ ├── loja_controller_test.dart │ │ └── loja_page_test.dart │ │ └── produto │ │ ├── produto_controller_test.dart │ │ └── produto_page_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── modular_get_own_module ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── modular_get_own_module │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ └── modules │ │ │ ├── first │ │ │ ├── first_controller.dart │ │ │ ├── first_controller.g.dart │ │ │ ├── first_module.dart │ │ │ ├── first_page.dart │ │ │ └── implementation │ │ │ │ └── first_some.dart │ │ │ ├── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ │ │ ├── second │ │ │ ├── implementation │ │ │ │ └── second_some.dart │ │ │ ├── second_controller.dart │ │ │ ├── second_controller.g.dart │ │ │ ├── second_module.dart │ │ │ └── second_page.dart │ │ │ └── shared │ │ │ ├── some_interface.dart │ │ │ └── third_some.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── first │ ├── first_controller_test.dart │ └── first_page_test.dart │ ├── home │ ├── home_controller_test.dart │ └── home_page_test.dart │ └── second │ ├── second_controller_test.dart │ └── second_page_test.dart ├── onesignal_push_notifications ├── .gitignore ├── .metadata ├── .vscode │ └── launch.json ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── onesignal_push_notifications │ │ │ │ │ └── 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_controller.dart │ │ ├── app_controller.g.dart │ │ ├── app_module.dart │ │ ├── app_widget.dart │ │ ├── modules │ │ │ ├── home │ │ │ │ ├── home_controller.dart │ │ │ │ ├── home_controller.g.dart │ │ │ │ ├── home_module.dart │ │ │ │ └── home_page.dart │ │ │ └── notifications │ │ │ │ ├── notifications_controller.dart │ │ │ │ ├── notifications_controller.g.dart │ │ │ │ ├── notifications_module.dart │ │ │ │ └── notifications_page.dart │ │ └── shared │ │ │ ├── notifications_store.dart │ │ │ └── notifications_store.g.dart │ └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── app │ ├── app_controller_test.dart │ └── modules │ ├── home │ ├── home_controller_test.dart │ └── home_page_test.dart │ └── notifications │ ├── notifications_controller_test.dart │ └── notifications_page_test.dart └── snack_bar_without_context ├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── snack_bar_without_context │ │ │ │ └── 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_controller.dart │ ├── app_controller.g.dart │ ├── app_module.dart │ ├── app_widget.dart │ ├── modules │ │ └── home │ │ │ ├── home_controller.dart │ │ │ ├── home_controller.g.dart │ │ │ ├── home_module.dart │ │ │ └── home_page.dart │ └── snackbar │ │ └── custom_snack_bar.dart └── main.dart ├── pubspec.lock ├── pubspec.yaml └── test └── app ├── app_controller_test.dart └── modules └── home ├── home_controller_test.dart └── home_page_test.dart /README.md: -------------------------------------------------------------------------------- 1 | # how_to_do 2 | 3 | Many samples for all solutions 4 | -------------------------------------------------------------------------------- /hasura_filter_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/.gitignore -------------------------------------------------------------------------------- /hasura_filter_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/.metadata -------------------------------------------------------------------------------- /hasura_filter_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/README.md -------------------------------------------------------------------------------- /hasura_filter_list/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/android/.gitignore -------------------------------------------------------------------------------- /hasura_filter_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/android/app/build.gradle -------------------------------------------------------------------------------- /hasura_filter_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/android/build.gradle -------------------------------------------------------------------------------- /hasura_filter_list/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/android/gradle.properties -------------------------------------------------------------------------------- /hasura_filter_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/android/settings.gradle -------------------------------------------------------------------------------- /hasura_filter_list/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/ios/.gitignore -------------------------------------------------------------------------------- /hasura_filter_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hasura_filter_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hasura_filter_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /hasura_filter_list/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /hasura_filter_list/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/lib/app/app_module.dart -------------------------------------------------------------------------------- /hasura_filter_list/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/lib/app/app_widget.dart -------------------------------------------------------------------------------- /hasura_filter_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/lib/main.dart -------------------------------------------------------------------------------- /hasura_filter_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/pubspec.lock -------------------------------------------------------------------------------- /hasura_filter_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/pubspec.yaml -------------------------------------------------------------------------------- /hasura_filter_list/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/web/favicon.png -------------------------------------------------------------------------------- /hasura_filter_list/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/web/icons/Icon-192.png -------------------------------------------------------------------------------- /hasura_filter_list/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/web/icons/Icon-512.png -------------------------------------------------------------------------------- /hasura_filter_list/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/web/index.html -------------------------------------------------------------------------------- /hasura_filter_list/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/web/manifest.json -------------------------------------------------------------------------------- /hasura_filter_list/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/.gitignore -------------------------------------------------------------------------------- /hasura_filter_list/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/CMakeLists.txt -------------------------------------------------------------------------------- /hasura_filter_list/windows/flutter/.template_version: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /hasura_filter_list/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/runner/Runner.rc -------------------------------------------------------------------------------- /hasura_filter_list/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/runner/main.cpp -------------------------------------------------------------------------------- /hasura_filter_list/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/runner/resource.h -------------------------------------------------------------------------------- /hasura_filter_list/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/runner/run_loop.h -------------------------------------------------------------------------------- /hasura_filter_list/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/runner/utils.cpp -------------------------------------------------------------------------------- /hasura_filter_list/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hasura_filter_list/windows/runner/utils.h -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/.gitignore -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/.metadata -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/README.md -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/analysis_options.yaml -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/android/.gitignore -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/android/build.gradle -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/android/settings.gradle -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/ios/.gitignore -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/ios/Runner/Info.plist -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/lib/main.dart -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/pubspec.lock -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/pubspec.yaml -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/test/widget_test.dart -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/web/favicon.png -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/web/icons/Icon-192.png -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/web/icons/Icon-512.png -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/web/index.html -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/web/manifest.json -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/windows/.gitignore -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/windows/CMakeLists.txt -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/windows/runner/main.cpp -------------------------------------------------------------------------------- /how_to_do_bloc_scoped/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/how_to_do_bloc_scoped/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_api_crud_observable_model/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/.gitignore -------------------------------------------------------------------------------- /htd_api_crud_observable_model/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/.metadata -------------------------------------------------------------------------------- /htd_api_crud_observable_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/README.md -------------------------------------------------------------------------------- /htd_api_crud_observable_model/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/ios/.gitignore -------------------------------------------------------------------------------- /htd_api_crud_observable_model/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_api_crud_observable_model/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_api_crud_observable_model/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_api_crud_observable_model/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/lib/main.dart -------------------------------------------------------------------------------- /htd_api_crud_observable_model/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/printscreen.png -------------------------------------------------------------------------------- /htd_api_crud_observable_model/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/pubspec.lock -------------------------------------------------------------------------------- /htd_api_crud_observable_model/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/pubspec.yaml -------------------------------------------------------------------------------- /htd_api_crud_observable_model/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/web/favicon.png -------------------------------------------------------------------------------- /htd_api_crud_observable_model/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_api_crud_observable_model/web/index.html -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/.gitignore -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/.metadata -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/README.md -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/android/.gitignore -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/ios/.gitignore -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/lib/main.dart -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/pubspec.lock -------------------------------------------------------------------------------- /htd_bottom_navigation_bar/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_bottom_navigation_bar/pubspec.yaml -------------------------------------------------------------------------------- /htd_bottom_navigation_bar_sem_pageview/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_bottom_navigation_bar_sem_pageview/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_bottom_navigation_bar_sem_pageview/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_complete_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/.gitignore -------------------------------------------------------------------------------- /htd_complete_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/.metadata -------------------------------------------------------------------------------- /htd_complete_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/README.md -------------------------------------------------------------------------------- /htd_complete_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/android/.gitignore -------------------------------------------------------------------------------- /htd_complete_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/android/app/build.gradle -------------------------------------------------------------------------------- /htd_complete_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/android/build.gradle -------------------------------------------------------------------------------- /htd_complete_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/android/gradle.properties -------------------------------------------------------------------------------- /htd_complete_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/android/settings.gradle -------------------------------------------------------------------------------- /htd_complete_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/ios/.gitignore -------------------------------------------------------------------------------- /htd_complete_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_complete_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_complete_app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_complete_app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_complete_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_complete_app/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_complete_app/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_complete_app/lib/app/bloc/app_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/lib/app/bloc/app_bloc.dart -------------------------------------------------------------------------------- /htd_complete_app/lib/app/bloc/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/lib/app/bloc/app_state.dart -------------------------------------------------------------------------------- /htd_complete_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/lib/main.dart -------------------------------------------------------------------------------- /htd_complete_app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/pubspec.lock -------------------------------------------------------------------------------- /htd_complete_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/pubspec.yaml -------------------------------------------------------------------------------- /htd_complete_app/test/app/app_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/test/app/app_bloc_test.dart -------------------------------------------------------------------------------- /htd_complete_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/web/favicon.png -------------------------------------------------------------------------------- /htd_complete_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_complete_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_complete_app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/web/index.html -------------------------------------------------------------------------------- /htd_complete_app/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_complete_app/web/manifest.json -------------------------------------------------------------------------------- /htd_controllers_with_parameters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_controllers_with_parameters/.gitignore -------------------------------------------------------------------------------- /htd_controllers_with_parameters/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_controllers_with_parameters/.metadata -------------------------------------------------------------------------------- /htd_controllers_with_parameters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_controllers_with_parameters/README.md -------------------------------------------------------------------------------- /htd_controllers_with_parameters/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_controllers_with_parameters/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_controllers_with_parameters/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_controllers_with_parameters/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_controllers_with_parameters/lib/main.dart -------------------------------------------------------------------------------- /htd_controllers_with_parameters/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_controllers_with_parameters/pubspec.lock -------------------------------------------------------------------------------- /htd_controllers_with_parameters/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_controllers_with_parameters/pubspec.yaml -------------------------------------------------------------------------------- /htd_drawer_navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/.gitignore -------------------------------------------------------------------------------- /htd_drawer_navigation/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/.metadata -------------------------------------------------------------------------------- /htd_drawer_navigation/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/.vscode/launch.json -------------------------------------------------------------------------------- /htd_drawer_navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/README.md -------------------------------------------------------------------------------- /htd_drawer_navigation/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/android/.gitignore -------------------------------------------------------------------------------- /htd_drawer_navigation/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/android/build.gradle -------------------------------------------------------------------------------- /htd_drawer_navigation/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/android/settings.gradle -------------------------------------------------------------------------------- /htd_drawer_navigation/drawer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/drawer.PNG -------------------------------------------------------------------------------- /htd_drawer_navigation/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/ios/.gitignore -------------------------------------------------------------------------------- /htd_drawer_navigation/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_drawer_navigation/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_drawer_navigation/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_drawer_navigation/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_drawer_navigation/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_drawer_navigation/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_drawer_navigation/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/lib/main.dart -------------------------------------------------------------------------------- /htd_drawer_navigation/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/pubspec.lock -------------------------------------------------------------------------------- /htd_drawer_navigation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_drawer_navigation/pubspec.yaml -------------------------------------------------------------------------------- /htd_i18n/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/.gitignore -------------------------------------------------------------------------------- /htd_i18n/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/.metadata -------------------------------------------------------------------------------- /htd_i18n/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/.vscode/launch.json -------------------------------------------------------------------------------- /htd_i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/README.md -------------------------------------------------------------------------------- /htd_i18n/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/android/.gitignore -------------------------------------------------------------------------------- /htd_i18n/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/android/app/build.gradle -------------------------------------------------------------------------------- /htd_i18n/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/android/build.gradle -------------------------------------------------------------------------------- /htd_i18n/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/android/gradle.properties -------------------------------------------------------------------------------- /htd_i18n/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/android/settings.gradle -------------------------------------------------------------------------------- /htd_i18n/assets/language/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/assets/language/de_DE.json -------------------------------------------------------------------------------- /htd_i18n/assets/language/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/assets/language/es_ES.json -------------------------------------------------------------------------------- /htd_i18n/assets/language/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/assets/language/pt_BR.json -------------------------------------------------------------------------------- /htd_i18n/assets/language/us_EN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/assets/language/us_EN.json -------------------------------------------------------------------------------- /htd_i18n/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/ios/.gitignore -------------------------------------------------------------------------------- /htd_i18n/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_i18n/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_i18n/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_i18n/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_i18n/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_i18n/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_i18n/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_i18n/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_i18n/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /htd_i18n/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_i18n/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_i18n/lib/app/modules/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/lib/app/modules/home/home_page.dart -------------------------------------------------------------------------------- /htd_i18n/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/lib/main.dart -------------------------------------------------------------------------------- /htd_i18n/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/pubspec.lock -------------------------------------------------------------------------------- /htd_i18n/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/pubspec.yaml -------------------------------------------------------------------------------- /htd_i18n/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/sample.png -------------------------------------------------------------------------------- /htd_i18n/test/app/app_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/test/app/app_controller_test.dart -------------------------------------------------------------------------------- /htd_i18n/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/web/favicon.png -------------------------------------------------------------------------------- /htd_i18n/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_i18n/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_i18n/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/web/index.html -------------------------------------------------------------------------------- /htd_i18n/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/web/manifest.json -------------------------------------------------------------------------------- /htd_i18n/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/.gitignore -------------------------------------------------------------------------------- /htd_i18n/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_i18n/windows/flutter/.template_version: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /htd_i18n/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /htd_i18n/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /htd_i18n/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_i18n/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /htd_i18n/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /htd_i18n/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_i18n/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_i18n/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /htd_i18n/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_i18n/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /htd_i18n/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_i18n/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_i18n/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /htd_i18n/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_i18n/windows/runner/win32_window.h -------------------------------------------------------------------------------- /htd_login_page_navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/.gitignore -------------------------------------------------------------------------------- /htd_login_page_navigation/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/.metadata -------------------------------------------------------------------------------- /htd_login_page_navigation/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/.vscode/launch.json -------------------------------------------------------------------------------- /htd_login_page_navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/README.md -------------------------------------------------------------------------------- /htd_login_page_navigation/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/android/.gitignore -------------------------------------------------------------------------------- /htd_login_page_navigation/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/ios/.gitignore -------------------------------------------------------------------------------- /htd_login_page_navigation/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_login_page_navigation/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_login_page_navigation/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_login_page_navigation/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/lib/main.dart -------------------------------------------------------------------------------- /htd_login_page_navigation/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/printscreen.png -------------------------------------------------------------------------------- /htd_login_page_navigation/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/pubspec.lock -------------------------------------------------------------------------------- /htd_login_page_navigation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_login_page_navigation/pubspec.yaml -------------------------------------------------------------------------------- /htd_loja_stores/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.gitignore -------------------------------------------------------------------------------- /htd_loja_stores/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.metadata -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1589499101255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1589499101255 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1589499139304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1589499139304 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1589499154205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1589499154205 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1589499194904: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1589499194904 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1589500263134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1589500263134 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590150214150: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590150214150 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590156417420: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590156417420 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590252505346: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590252505346 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590252529780: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590252529780 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590252606044: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590252606044 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590252620814: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590252620814 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590255875586: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590255875586 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590260265637: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590260265637 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590260342822: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590260342822 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590260358570: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590260358570 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590260381123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590260381123 -------------------------------------------------------------------------------- /htd_loja_stores/.slidy/1590264836658: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.slidy/1590264836658 -------------------------------------------------------------------------------- /htd_loja_stores/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/.vscode/settings.json -------------------------------------------------------------------------------- /htd_loja_stores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/README.md -------------------------------------------------------------------------------- /htd_loja_stores/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/android/.gitignore -------------------------------------------------------------------------------- /htd_loja_stores/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/android/app/build.gradle -------------------------------------------------------------------------------- /htd_loja_stores/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/android/build.gradle -------------------------------------------------------------------------------- /htd_loja_stores/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/android/gradle.properties -------------------------------------------------------------------------------- /htd_loja_stores/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/android/settings.gradle -------------------------------------------------------------------------------- /htd_loja_stores/assets/cat_lovers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/assets/cat_lovers.png -------------------------------------------------------------------------------- /htd_loja_stores/assets/dog_foods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/assets/dog_foods.png -------------------------------------------------------------------------------- /htd_loja_stores/assets/logo_bwolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/assets/logo_bwolf.png -------------------------------------------------------------------------------- /htd_loja_stores/assets/pet_lovers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/assets/pet_lovers.png -------------------------------------------------------------------------------- /htd_loja_stores/assets/pet_shops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/assets/pet_shops.png -------------------------------------------------------------------------------- /htd_loja_stores/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/ios/.gitignore -------------------------------------------------------------------------------- /htd_loja_stores/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_loja_stores/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_loja_stores/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_loja_stores/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_loja_stores/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_loja_stores/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_loja_stores/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /htd_loja_stores/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_loja_stores/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_loja_stores/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/lib/main.dart -------------------------------------------------------------------------------- /htd_loja_stores/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/pubspec.lock -------------------------------------------------------------------------------- /htd_loja_stores/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/pubspec.yaml -------------------------------------------------------------------------------- /htd_loja_stores/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/web/favicon.png -------------------------------------------------------------------------------- /htd_loja_stores/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_loja_stores/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_loja_stores/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/web/index.html -------------------------------------------------------------------------------- /htd_loja_stores/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores/web/manifest.json -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/.gitignore -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/.metadata -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/README.md -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/android/.gitignore -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/ios/.gitignore -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/lib/main.dart -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/pubspec.lock -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/pubspec.yaml -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/web/favicon.png -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/web/index.html -------------------------------------------------------------------------------- /htd_loja_stores_with_cart/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_loja_stores_with_cart/web/manifest.json -------------------------------------------------------------------------------- /htd_maps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/.gitignore -------------------------------------------------------------------------------- /htd_maps/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/.metadata -------------------------------------------------------------------------------- /htd_maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/README.md -------------------------------------------------------------------------------- /htd_maps/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/android/.gitignore -------------------------------------------------------------------------------- /htd_maps/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/android/app/build.gradle -------------------------------------------------------------------------------- /htd_maps/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/android/build.gradle -------------------------------------------------------------------------------- /htd_maps/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/android/gradle.properties -------------------------------------------------------------------------------- /htd_maps/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/android/settings.gradle -------------------------------------------------------------------------------- /htd_maps/assets/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/assets/marker.png -------------------------------------------------------------------------------- /htd_maps/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/ios/.gitignore -------------------------------------------------------------------------------- /htd_maps/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /htd_maps/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_maps/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_maps/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /htd_maps/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_maps/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_maps/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_maps/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_maps/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /htd_maps/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_maps/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_maps/lib/app/modules/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/lib/app/modules/home/home_page.dart -------------------------------------------------------------------------------- /htd_maps/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/lib/main.dart -------------------------------------------------------------------------------- /htd_maps/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/printscreen.png -------------------------------------------------------------------------------- /htd_maps/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/pubspec.lock -------------------------------------------------------------------------------- /htd_maps/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/pubspec.yaml -------------------------------------------------------------------------------- /htd_maps/test/app/app_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/test/app/app_controller_test.dart -------------------------------------------------------------------------------- /htd_maps/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_maps/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_maps/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/web/index.html -------------------------------------------------------------------------------- /htd_maps/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_maps/web/manifest.json -------------------------------------------------------------------------------- /htd_modular_guards/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/.gitignore -------------------------------------------------------------------------------- /htd_modular_guards/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/.metadata -------------------------------------------------------------------------------- /htd_modular_guards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/README.md -------------------------------------------------------------------------------- /htd_modular_guards/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/android/.gitignore -------------------------------------------------------------------------------- /htd_modular_guards/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/android/app/build.gradle -------------------------------------------------------------------------------- /htd_modular_guards/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/android/build.gradle -------------------------------------------------------------------------------- /htd_modular_guards/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/android/gradle.properties -------------------------------------------------------------------------------- /htd_modular_guards/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/android/settings.gradle -------------------------------------------------------------------------------- /htd_modular_guards/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/ios/.gitignore -------------------------------------------------------------------------------- /htd_modular_guards/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_modular_guards/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_modular_guards/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_modular_guards/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_modular_guards/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_modular_guards/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_modular_guards/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/lib/main.dart -------------------------------------------------------------------------------- /htd_modular_guards/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/pubspec.lock -------------------------------------------------------------------------------- /htd_modular_guards/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/pubspec.yaml -------------------------------------------------------------------------------- /htd_modular_guards/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/web/favicon.png -------------------------------------------------------------------------------- /htd_modular_guards/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_modular_guards/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_modular_guards/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/web/index.html -------------------------------------------------------------------------------- /htd_modular_guards/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/web/manifest.json -------------------------------------------------------------------------------- /htd_modular_guards/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/.gitignore -------------------------------------------------------------------------------- /htd_modular_guards/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_modular_guards/windows/flutter/.template_version: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /htd_modular_guards/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_modular_guards/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_modular_guards/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_modular_guards/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_modular_guards/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_modular_guards/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_guards/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_modular_navigation_many_modules/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_navigation_many_modules/.metadata -------------------------------------------------------------------------------- /htd_modular_navigation_many_modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_modular_navigation_many_modules/README.md -------------------------------------------------------------------------------- /htd_modular_navigation_many_modules/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_modular_navigation_many_modules/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_modular_navigation_many_modules/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_multi_dropdowns/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/.gitignore -------------------------------------------------------------------------------- /htd_multi_dropdowns/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/.metadata -------------------------------------------------------------------------------- /htd_multi_dropdowns/.slidy/1585443761635: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/.slidy/1585443761635 -------------------------------------------------------------------------------- /htd_multi_dropdowns/.slidy/1585444019788: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/.slidy/1585444019788 -------------------------------------------------------------------------------- /htd_multi_dropdowns/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/.vscode/launch.json -------------------------------------------------------------------------------- /htd_multi_dropdowns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/README.md -------------------------------------------------------------------------------- /htd_multi_dropdowns/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/android/.gitignore -------------------------------------------------------------------------------- /htd_multi_dropdowns/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/android/app/build.gradle -------------------------------------------------------------------------------- /htd_multi_dropdowns/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/android/build.gradle -------------------------------------------------------------------------------- /htd_multi_dropdowns/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/android/gradle.properties -------------------------------------------------------------------------------- /htd_multi_dropdowns/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/android/settings.gradle -------------------------------------------------------------------------------- /htd_multi_dropdowns/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/ios/.gitignore -------------------------------------------------------------------------------- /htd_multi_dropdowns/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_multi_dropdowns/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_multi_dropdowns/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_multi_dropdowns/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_multi_dropdowns/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_multi_dropdowns/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_multi_dropdowns/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/lib/main.dart -------------------------------------------------------------------------------- /htd_multi_dropdowns/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/printscreen.png -------------------------------------------------------------------------------- /htd_multi_dropdowns/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/pubspec.lock -------------------------------------------------------------------------------- /htd_multi_dropdowns/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/pubspec.yaml -------------------------------------------------------------------------------- /htd_multi_dropdowns/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/web/favicon.png -------------------------------------------------------------------------------- /htd_multi_dropdowns/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_multi_dropdowns/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_multi_dropdowns/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/web/index.html -------------------------------------------------------------------------------- /htd_multi_dropdowns/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_multi_dropdowns/web/manifest.json -------------------------------------------------------------------------------- /htd_navigations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/.gitignore -------------------------------------------------------------------------------- /htd_navigations/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/.metadata -------------------------------------------------------------------------------- /htd_navigations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/README.md -------------------------------------------------------------------------------- /htd_navigations/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/android/.gitignore -------------------------------------------------------------------------------- /htd_navigations/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/android/app/build.gradle -------------------------------------------------------------------------------- /htd_navigations/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/android/build.gradle -------------------------------------------------------------------------------- /htd_navigations/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/android/gradle.properties -------------------------------------------------------------------------------- /htd_navigations/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/android/settings.gradle -------------------------------------------------------------------------------- /htd_navigations/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/ios/.gitignore -------------------------------------------------------------------------------- /htd_navigations/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_navigations/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_navigations/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_navigations/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_navigations/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_navigations/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_navigations/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /htd_navigations/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_navigations/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_navigations/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/lib/main.dart -------------------------------------------------------------------------------- /htd_navigations/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/pubspec.lock -------------------------------------------------------------------------------- /htd_navigations/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_navigations/pubspec.yaml -------------------------------------------------------------------------------- /htd_observable_list_search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/.gitignore -------------------------------------------------------------------------------- /htd_observable_list_search/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/.metadata -------------------------------------------------------------------------------- /htd_observable_list_search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/README.md -------------------------------------------------------------------------------- /htd_observable_list_search/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/android/.gitignore -------------------------------------------------------------------------------- /htd_observable_list_search/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/ios/.gitignore -------------------------------------------------------------------------------- /htd_observable_list_search/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_observable_list_search/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_observable_list_search/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_observable_list_search/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/lib/main.dart -------------------------------------------------------------------------------- /htd_observable_list_search/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/pubspec.lock -------------------------------------------------------------------------------- /htd_observable_list_search/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/pubspec.yaml -------------------------------------------------------------------------------- /htd_observable_list_search/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/web/favicon.png -------------------------------------------------------------------------------- /htd_observable_list_search/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/web/index.html -------------------------------------------------------------------------------- /htd_observable_list_search/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_observable_list_search/web/manifest.json -------------------------------------------------------------------------------- /htd_package_oriented/htd_main_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/htd_main_app/.gitignore -------------------------------------------------------------------------------- /htd_package_oriented/htd_main_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/htd_main_app/.metadata -------------------------------------------------------------------------------- /htd_package_oriented/htd_main_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/htd_main_app/README.md -------------------------------------------------------------------------------- /htd_package_oriented/htd_main_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_package_oriented/htd_main_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_package_oriented/htd_main_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/compra_estoque_online/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/compra_estoque_online/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/compra_estoque_online/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'compra_estoque_online' 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/compra_estoque_online/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_financeiro/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_financeiro/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_financeiro/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'controle_financeiro' 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_financeiro/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_patrimonial/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_patrimonial/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_patrimonial/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'controle_patrimonial' 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/controle_patrimonial/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/modules/crm/.gitignore -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/modules/crm/.metadata -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/modules/crm/README.md -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'crm' 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/crm.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/modules/crm/crm.iml -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/modules/crm/pubspec.lock -------------------------------------------------------------------------------- /htd_package_oriented/modules/crm/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_package_oriented/modules/crm/pubspec.yaml -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_compras/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_compras/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_compras/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'gestao_compras' 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_compras/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_projetos/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_projetos/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_projetos/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'gestao_projetos' 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/gestao_projetos/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/vendas_faturamento/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/vendas_faturamento/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/vendas_faturamento/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'vendas_faturamento' 2 | -------------------------------------------------------------------------------- /htd_package_oriented/modules/vendas_faturamento/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htd_quick_action/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/.gitignore -------------------------------------------------------------------------------- /htd_quick_action/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/.metadata -------------------------------------------------------------------------------- /htd_quick_action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/README.md -------------------------------------------------------------------------------- /htd_quick_action/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/android/.gitignore -------------------------------------------------------------------------------- /htd_quick_action/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/android/app/build.gradle -------------------------------------------------------------------------------- /htd_quick_action/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/android/build.gradle -------------------------------------------------------------------------------- /htd_quick_action/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/android/gradle.properties -------------------------------------------------------------------------------- /htd_quick_action/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/android/settings.gradle -------------------------------------------------------------------------------- /htd_quick_action/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/ios/.gitignore -------------------------------------------------------------------------------- /htd_quick_action/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_quick_action/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_quick_action/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_quick_action/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_quick_action/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_quick_action/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_quick_action/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_quick_action/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_quick_action/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/lib/main.dart -------------------------------------------------------------------------------- /htd_quick_action/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/pubspec.lock -------------------------------------------------------------------------------- /htd_quick_action/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/pubspec.yaml -------------------------------------------------------------------------------- /htd_quick_action/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/web/favicon.png -------------------------------------------------------------------------------- /htd_quick_action/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_quick_action/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_quick_action/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/web/index.html -------------------------------------------------------------------------------- /htd_quick_action/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/web/manifest.json -------------------------------------------------------------------------------- /htd_quick_action/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/.gitignore -------------------------------------------------------------------------------- /htd_quick_action/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_quick_action/windows/flutter/.template_version: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /htd_quick_action/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_quick_action/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_quick_action/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_quick_action/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /htd_quick_action/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/runner/run_loop.h -------------------------------------------------------------------------------- /htd_quick_action/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_quick_action/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_quick_action/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_reactive_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/.gitignore -------------------------------------------------------------------------------- /htd_reactive_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/.metadata -------------------------------------------------------------------------------- /htd_reactive_list/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/.vscode/launch.json -------------------------------------------------------------------------------- /htd_reactive_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/README.md -------------------------------------------------------------------------------- /htd_reactive_list/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/android/.gitignore -------------------------------------------------------------------------------- /htd_reactive_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/android/app/build.gradle -------------------------------------------------------------------------------- /htd_reactive_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/android/build.gradle -------------------------------------------------------------------------------- /htd_reactive_list/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/android/gradle.properties -------------------------------------------------------------------------------- /htd_reactive_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/android/settings.gradle -------------------------------------------------------------------------------- /htd_reactive_list/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/ios/.gitignore -------------------------------------------------------------------------------- /htd_reactive_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_reactive_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_reactive_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_reactive_list/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_reactive_list/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_reactive_list/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_reactive_list/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_reactive_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/lib/main.dart -------------------------------------------------------------------------------- /htd_reactive_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/pubspec.lock -------------------------------------------------------------------------------- /htd_reactive_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_list/pubspec.yaml -------------------------------------------------------------------------------- /htd_reactive_model/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/.gitignore -------------------------------------------------------------------------------- /htd_reactive_model/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/.metadata -------------------------------------------------------------------------------- /htd_reactive_model/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/.vscode/launch.json -------------------------------------------------------------------------------- /htd_reactive_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/README.md -------------------------------------------------------------------------------- /htd_reactive_model/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/android/.gitignore -------------------------------------------------------------------------------- /htd_reactive_model/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/android/app/build.gradle -------------------------------------------------------------------------------- /htd_reactive_model/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/android/build.gradle -------------------------------------------------------------------------------- /htd_reactive_model/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/android/gradle.properties -------------------------------------------------------------------------------- /htd_reactive_model/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/android/settings.gradle -------------------------------------------------------------------------------- /htd_reactive_model/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/ios/.gitignore -------------------------------------------------------------------------------- /htd_reactive_model/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_reactive_model/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_reactive_model/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_reactive_model/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_reactive_model/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_reactive_model/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_reactive_model/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/lib/main.dart -------------------------------------------------------------------------------- /htd_reactive_model/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/pubspec.lock -------------------------------------------------------------------------------- /htd_reactive_model/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_reactive_model/pubspec.yaml -------------------------------------------------------------------------------- /htd_rout_outlets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.gitignore -------------------------------------------------------------------------------- /htd_rout_outlets/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.metadata -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589087104170: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589087104170 -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589087331559: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589087331559 -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589088168023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589088168023 -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589088183280: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589088183280 -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589088216474: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589088216474 -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589088232886: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589088232886 -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589089443242: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589089443242 -------------------------------------------------------------------------------- /htd_rout_outlets/.slidy/1589089476412: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.slidy/1589089476412 -------------------------------------------------------------------------------- /htd_rout_outlets/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/.vscode/launch.json -------------------------------------------------------------------------------- /htd_rout_outlets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/README.md -------------------------------------------------------------------------------- /htd_rout_outlets/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/android/.gitignore -------------------------------------------------------------------------------- /htd_rout_outlets/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/android/app/build.gradle -------------------------------------------------------------------------------- /htd_rout_outlets/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/android/build.gradle -------------------------------------------------------------------------------- /htd_rout_outlets/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/android/gradle.properties -------------------------------------------------------------------------------- /htd_rout_outlets/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/android/settings.gradle -------------------------------------------------------------------------------- /htd_rout_outlets/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/ios/.gitignore -------------------------------------------------------------------------------- /htd_rout_outlets/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_rout_outlets/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_rout_outlets/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_rout_outlets/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_rout_outlets/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_rout_outlets/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_rout_outlets/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_rout_outlets/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_rout_outlets/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/lib/main.dart -------------------------------------------------------------------------------- /htd_rout_outlets/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/pubspec.lock -------------------------------------------------------------------------------- /htd_rout_outlets/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/pubspec.yaml -------------------------------------------------------------------------------- /htd_rout_outlets/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/web/favicon.png -------------------------------------------------------------------------------- /htd_rout_outlets/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_rout_outlets/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_rout_outlets/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/web/index.html -------------------------------------------------------------------------------- /htd_rout_outlets/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_rout_outlets/web/manifest.json -------------------------------------------------------------------------------- /htd_search_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/.gitignore -------------------------------------------------------------------------------- /htd_search_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/.metadata -------------------------------------------------------------------------------- /htd_search_list/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/.vscode/launch.json -------------------------------------------------------------------------------- /htd_search_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/README.md -------------------------------------------------------------------------------- /htd_search_list/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/android/.gitignore -------------------------------------------------------------------------------- /htd_search_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/android/app/build.gradle -------------------------------------------------------------------------------- /htd_search_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/android/build.gradle -------------------------------------------------------------------------------- /htd_search_list/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/android/gradle.properties -------------------------------------------------------------------------------- /htd_search_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/android/settings.gradle -------------------------------------------------------------------------------- /htd_search_list/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/ios/.gitignore -------------------------------------------------------------------------------- /htd_search_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_search_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_search_list/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_search_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_search_list/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_search_list/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_search_list/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /htd_search_list/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_search_list/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_search_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/lib/main.dart -------------------------------------------------------------------------------- /htd_search_list/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/printscreen.png -------------------------------------------------------------------------------- /htd_search_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/pubspec.lock -------------------------------------------------------------------------------- /htd_search_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list/pubspec.yaml -------------------------------------------------------------------------------- /htd_search_list_bloc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/.gitignore -------------------------------------------------------------------------------- /htd_search_list_bloc/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/.metadata -------------------------------------------------------------------------------- /htd_search_list_bloc/.slidy/1585753927739: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/.slidy/1585753927739 -------------------------------------------------------------------------------- /htd_search_list_bloc/.slidy/1585753960439: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/.slidy/1585753960439 -------------------------------------------------------------------------------- /htd_search_list_bloc/.slidy/1585753989341: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/.slidy/1585753989341 -------------------------------------------------------------------------------- /htd_search_list_bloc/.slidy/1585754184884: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/.slidy/1585754184884 -------------------------------------------------------------------------------- /htd_search_list_bloc/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/.vscode/launch.json -------------------------------------------------------------------------------- /htd_search_list_bloc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/README.md -------------------------------------------------------------------------------- /htd_search_list_bloc/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/android/.gitignore -------------------------------------------------------------------------------- /htd_search_list_bloc/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/android/app/build.gradle -------------------------------------------------------------------------------- /htd_search_list_bloc/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/android/build.gradle -------------------------------------------------------------------------------- /htd_search_list_bloc/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/android/settings.gradle -------------------------------------------------------------------------------- /htd_search_list_bloc/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/ios/.gitignore -------------------------------------------------------------------------------- /htd_search_list_bloc/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_search_list_bloc/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_search_list_bloc/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_search_list_bloc/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /htd_search_list_bloc/lib/app/app_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/lib/app/app_bloc.dart -------------------------------------------------------------------------------- /htd_search_list_bloc/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_search_list_bloc/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_search_list_bloc/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/lib/main.dart -------------------------------------------------------------------------------- /htd_search_list_bloc/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/pubspec.lock -------------------------------------------------------------------------------- /htd_search_list_bloc/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_search_list_bloc/pubspec.yaml -------------------------------------------------------------------------------- /htd_set_state/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/.gitignore -------------------------------------------------------------------------------- /htd_set_state/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/.metadata -------------------------------------------------------------------------------- /htd_set_state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/README.md -------------------------------------------------------------------------------- /htd_set_state/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/analysis_options.yaml -------------------------------------------------------------------------------- /htd_set_state/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/android/.gitignore -------------------------------------------------------------------------------- /htd_set_state/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/android/app/build.gradle -------------------------------------------------------------------------------- /htd_set_state/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/android/build.gradle -------------------------------------------------------------------------------- /htd_set_state/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/android/gradle.properties -------------------------------------------------------------------------------- /htd_set_state/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/android/settings.gradle -------------------------------------------------------------------------------- /htd_set_state/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/ios/.gitignore -------------------------------------------------------------------------------- /htd_set_state/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_set_state/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_set_state/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_set_state/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_set_state/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_set_state/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/lib/main.dart -------------------------------------------------------------------------------- /htd_set_state/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/pubspec.lock -------------------------------------------------------------------------------- /htd_set_state/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/pubspec.yaml -------------------------------------------------------------------------------- /htd_set_state/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/test/widget_test.dart -------------------------------------------------------------------------------- /htd_set_state/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/web/favicon.png -------------------------------------------------------------------------------- /htd_set_state/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_set_state/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_set_state/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /htd_set_state/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /htd_set_state/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/web/index.html -------------------------------------------------------------------------------- /htd_set_state/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/web/manifest.json -------------------------------------------------------------------------------- /htd_set_state/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/.gitignore -------------------------------------------------------------------------------- /htd_set_state/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/CMakeLists.txt -------------------------------------------------------------------------------- /htd_set_state/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /htd_set_state/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /htd_set_state/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/Runner.rc -------------------------------------------------------------------------------- /htd_set_state/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /htd_set_state/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/main.cpp -------------------------------------------------------------------------------- /htd_set_state/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/resource.h -------------------------------------------------------------------------------- /htd_set_state/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/utils.cpp -------------------------------------------------------------------------------- /htd_set_state/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/utils.h -------------------------------------------------------------------------------- /htd_set_state/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /htd_set_state/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_set_state/windows/runner/win32_window.h -------------------------------------------------------------------------------- /htd_steps_mobx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/.gitignore -------------------------------------------------------------------------------- /htd_steps_mobx/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/.metadata -------------------------------------------------------------------------------- /htd_steps_mobx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/README.md -------------------------------------------------------------------------------- /htd_steps_mobx/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/android/.gitignore -------------------------------------------------------------------------------- /htd_steps_mobx/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/android/app/build.gradle -------------------------------------------------------------------------------- /htd_steps_mobx/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/android/build.gradle -------------------------------------------------------------------------------- /htd_steps_mobx/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/android/gradle.properties -------------------------------------------------------------------------------- /htd_steps_mobx/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/android/settings.gradle -------------------------------------------------------------------------------- /htd_steps_mobx/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/ios/.gitignore -------------------------------------------------------------------------------- /htd_steps_mobx/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_steps_mobx/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_steps_mobx/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htd_steps_mobx/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_steps_mobx/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_steps_mobx/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htd_steps_mobx/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /htd_steps_mobx/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_steps_mobx/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_steps_mobx/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/lib/main.dart -------------------------------------------------------------------------------- /htd_steps_mobx/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/pubspec.lock -------------------------------------------------------------------------------- /htd_steps_mobx/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_steps_mobx/pubspec.yaml -------------------------------------------------------------------------------- /htd_will_pop_scope/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/.gitignore -------------------------------------------------------------------------------- /htd_will_pop_scope/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/.metadata -------------------------------------------------------------------------------- /htd_will_pop_scope/.slidy/1586655987777: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/.slidy/1586655987777 -------------------------------------------------------------------------------- /htd_will_pop_scope/.slidy/1586656101679: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/.slidy/1586656101679 -------------------------------------------------------------------------------- /htd_will_pop_scope/.slidy/1586656222288: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/.slidy/1586656222288 -------------------------------------------------------------------------------- /htd_will_pop_scope/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/README.md -------------------------------------------------------------------------------- /htd_will_pop_scope/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/android/.gitignore -------------------------------------------------------------------------------- /htd_will_pop_scope/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/android/app/build.gradle -------------------------------------------------------------------------------- /htd_will_pop_scope/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/android/build.gradle -------------------------------------------------------------------------------- /htd_will_pop_scope/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/android/gradle.properties -------------------------------------------------------------------------------- /htd_will_pop_scope/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/android/settings.gradle -------------------------------------------------------------------------------- /htd_will_pop_scope/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/ios/.gitignore -------------------------------------------------------------------------------- /htd_will_pop_scope/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_will_pop_scope/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htd_will_pop_scope/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htd_will_pop_scope/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htd_will_pop_scope/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/lib/app/app_module.dart -------------------------------------------------------------------------------- /htd_will_pop_scope/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htd_will_pop_scope/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/lib/main.dart -------------------------------------------------------------------------------- /htd_will_pop_scope/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/pubspec.lock -------------------------------------------------------------------------------- /htd_will_pop_scope/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/pubspec.yaml -------------------------------------------------------------------------------- /htd_will_pop_scope/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/web/favicon.png -------------------------------------------------------------------------------- /htd_will_pop_scope/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htd_will_pop_scope/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htd_will_pop_scope/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/web/index.html -------------------------------------------------------------------------------- /htd_will_pop_scope/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htd_will_pop_scope/web/manifest.json -------------------------------------------------------------------------------- /htp_cool_login/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/.gitignore -------------------------------------------------------------------------------- /htp_cool_login/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/.metadata -------------------------------------------------------------------------------- /htp_cool_login/.slidy/1585184776392: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/.slidy/1585184776392 -------------------------------------------------------------------------------- /htp_cool_login/.slidy/1585184967682: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/.slidy/1585184967682 -------------------------------------------------------------------------------- /htp_cool_login/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/.vscode/launch.json -------------------------------------------------------------------------------- /htp_cool_login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/README.md -------------------------------------------------------------------------------- /htp_cool_login/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/android/.gitignore -------------------------------------------------------------------------------- /htp_cool_login/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/android/app/build.gradle -------------------------------------------------------------------------------- /htp_cool_login/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/android/build.gradle -------------------------------------------------------------------------------- /htp_cool_login/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/android/gradle.properties -------------------------------------------------------------------------------- /htp_cool_login/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/android/settings.gradle -------------------------------------------------------------------------------- /htp_cool_login/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/ios/.gitignore -------------------------------------------------------------------------------- /htp_cool_login/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htp_cool_login/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /htp_cool_login/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /htp_cool_login/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/ios/Runner/Info.plist -------------------------------------------------------------------------------- /htp_cool_login/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /htp_cool_login/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/lib/app/app_controller.dart -------------------------------------------------------------------------------- /htp_cool_login/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /htp_cool_login/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/lib/app/app_module.dart -------------------------------------------------------------------------------- /htp_cool_login/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/lib/app/app_widget.dart -------------------------------------------------------------------------------- /htp_cool_login/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/lib/main.dart -------------------------------------------------------------------------------- /htp_cool_login/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/printscreen.png -------------------------------------------------------------------------------- /htp_cool_login/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/pubspec.lock -------------------------------------------------------------------------------- /htp_cool_login/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/pubspec.yaml -------------------------------------------------------------------------------- /htp_cool_login/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/web/favicon.png -------------------------------------------------------------------------------- /htp_cool_login/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/web/icons/Icon-192.png -------------------------------------------------------------------------------- /htp_cool_login/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/web/icons/Icon-512.png -------------------------------------------------------------------------------- /htp_cool_login/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/web/index.html -------------------------------------------------------------------------------- /htp_cool_login/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/htp_cool_login/web/manifest.json -------------------------------------------------------------------------------- /hwd_modules/auth_module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/.gitignore -------------------------------------------------------------------------------- /hwd_modules/auth_module/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/.metadata -------------------------------------------------------------------------------- /hwd_modules/auth_module/.slidy/1586634153539: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/.slidy/1586634153539 -------------------------------------------------------------------------------- /hwd_modules/auth_module/.slidy/1586634228353: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/.slidy/1586634228353 -------------------------------------------------------------------------------- /hwd_modules/auth_module/.slidy/1586634241133: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/.slidy/1586634241133 -------------------------------------------------------------------------------- /hwd_modules/auth_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/README.md -------------------------------------------------------------------------------- /hwd_modules/auth_module/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/lib/main.dart -------------------------------------------------------------------------------- /hwd_modules/auth_module/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/pubspec.lock -------------------------------------------------------------------------------- /hwd_modules/auth_module/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/auth_module/pubspec.yaml -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/.gitignore -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/.metadata -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/.slidy/1586635726773: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/.slidy/1586635726773 -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/README.md -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/android/.gitignore -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/android/build.gradle -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/ios/.gitignore -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/lib/main.dart -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/pubspec.lock -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/pubspec.yaml -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/web/favicon.png -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/web/index.html -------------------------------------------------------------------------------- /hwd_modules/htd_main_app/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/htd_main_app/web/manifest.json -------------------------------------------------------------------------------- /hwd_modules/product_module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/product_module/.gitignore -------------------------------------------------------------------------------- /hwd_modules/product_module/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/product_module/.metadata -------------------------------------------------------------------------------- /hwd_modules/product_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/product_module/README.md -------------------------------------------------------------------------------- /hwd_modules/product_module/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/product_module/lib/main.dart -------------------------------------------------------------------------------- /hwd_modules/product_module/productmodule.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/product_module/productmodule.iml -------------------------------------------------------------------------------- /hwd_modules/product_module/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/product_module/pubspec.lock -------------------------------------------------------------------------------- /hwd_modules/product_module/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwd_modules/product_module/pubspec.yaml -------------------------------------------------------------------------------- /hwt_consume_future_api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/.gitignore -------------------------------------------------------------------------------- /hwt_consume_future_api/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/.metadata -------------------------------------------------------------------------------- /hwt_consume_future_api/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/.vscode/launch.json -------------------------------------------------------------------------------- /hwt_consume_future_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/README.md -------------------------------------------------------------------------------- /hwt_consume_future_api/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/android/.gitignore -------------------------------------------------------------------------------- /hwt_consume_future_api/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/android/build.gradle -------------------------------------------------------------------------------- /hwt_consume_future_api/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/ios/.gitignore -------------------------------------------------------------------------------- /hwt_consume_future_api/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_consume_future_api/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_consume_future_api/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/ios/Runner/Info.plist -------------------------------------------------------------------------------- /hwt_consume_future_api/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /hwt_consume_future_api/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/lib/main.dart -------------------------------------------------------------------------------- /hwt_consume_future_api/printscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/printscreen.png -------------------------------------------------------------------------------- /hwt_consume_future_api/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/pubspec.lock -------------------------------------------------------------------------------- /hwt_consume_future_api/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/pubspec.yaml -------------------------------------------------------------------------------- /hwt_consume_future_api/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/test/widget_test.dart -------------------------------------------------------------------------------- /hwt_consume_future_api/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/web/icons/Icon-192.png -------------------------------------------------------------------------------- /hwt_consume_future_api/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/web/icons/Icon-512.png -------------------------------------------------------------------------------- /hwt_consume_future_api/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/web/index.html -------------------------------------------------------------------------------- /hwt_consume_future_api/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_future_api/web/manifest.json -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_infinity_scroll/.gitignore -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_infinity_scroll/.metadata -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_infinity_scroll/README.md -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/_HomePageState(): -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_infinity_scroll/ios/.gitignore -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_infinity_scroll/lib/main.dart -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_infinity_scroll/pubspec.lock -------------------------------------------------------------------------------- /hwt_consume_infinity_scroll/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_consume_infinity_scroll/pubspec.yaml -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/.gitignore -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/.metadata -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/README.md -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/android/.gitignore -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/android/build.gradle -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/ios/.gitignore -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/lib/main.dart -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/pubspec.lock -------------------------------------------------------------------------------- /hwt_hasura_filter_stream/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/hwt_hasura_filter_stream/pubspec.yaml -------------------------------------------------------------------------------- /loja/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/.gitignore -------------------------------------------------------------------------------- /loja/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/.metadata -------------------------------------------------------------------------------- /loja/.slidy/1589499101255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/.slidy/1589499101255 -------------------------------------------------------------------------------- /loja/.slidy/1589499139304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/.slidy/1589499139304 -------------------------------------------------------------------------------- /loja/.slidy/1589499154205: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/.slidy/1589499154205 -------------------------------------------------------------------------------- /loja/.slidy/1589499194904: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/.slidy/1589499194904 -------------------------------------------------------------------------------- /loja/.slidy/1589500263134: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/.slidy/1589500263134 -------------------------------------------------------------------------------- /loja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/README.md -------------------------------------------------------------------------------- /loja/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/android/.gitignore -------------------------------------------------------------------------------- /loja/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/android/app/build.gradle -------------------------------------------------------------------------------- /loja/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /loja/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/android/build.gradle -------------------------------------------------------------------------------- /loja/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/android/gradle.properties -------------------------------------------------------------------------------- /loja/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/android/settings.gradle -------------------------------------------------------------------------------- /loja/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/ios/.gitignore -------------------------------------------------------------------------------- /loja/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /loja/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /loja/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /loja/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /loja/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /loja/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /loja/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/ios/Runner/Info.plist -------------------------------------------------------------------------------- /loja/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /loja/lib/app/app_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/app_controller.dart -------------------------------------------------------------------------------- /loja/lib/app/app_controller.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/app_controller.g.dart -------------------------------------------------------------------------------- /loja/lib/app/app_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/app_module.dart -------------------------------------------------------------------------------- /loja/lib/app/app_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/app_widget.dart -------------------------------------------------------------------------------- /loja/lib/app/modules/compra/compra_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/modules/compra/compra_page.dart -------------------------------------------------------------------------------- /loja/lib/app/modules/loja/loja_module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/modules/loja/loja_module.dart -------------------------------------------------------------------------------- /loja/lib/app/modules/loja/loja_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/modules/loja/loja_page.dart -------------------------------------------------------------------------------- /loja/lib/app/shared/produto_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/app/shared/produto_model.dart -------------------------------------------------------------------------------- /loja/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/lib/main.dart -------------------------------------------------------------------------------- /loja/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/pubspec.lock -------------------------------------------------------------------------------- /loja/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/pubspec.yaml -------------------------------------------------------------------------------- /loja/test/app/app_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/test/app/app_controller_test.dart -------------------------------------------------------------------------------- /loja/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/web/favicon.png -------------------------------------------------------------------------------- /loja/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/web/icons/Icon-192.png -------------------------------------------------------------------------------- /loja/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/web/icons/Icon-512.png -------------------------------------------------------------------------------- /loja/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/web/index.html -------------------------------------------------------------------------------- /loja/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/loja/web/manifest.json -------------------------------------------------------------------------------- /modular_get_own_module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/.gitignore -------------------------------------------------------------------------------- /modular_get_own_module/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/.metadata -------------------------------------------------------------------------------- /modular_get_own_module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/README.md -------------------------------------------------------------------------------- /modular_get_own_module/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/android/.gitignore -------------------------------------------------------------------------------- /modular_get_own_module/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/android/build.gradle -------------------------------------------------------------------------------- /modular_get_own_module/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/ios/.gitignore -------------------------------------------------------------------------------- /modular_get_own_module/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /modular_get_own_module/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /modular_get_own_module/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /modular_get_own_module/lib/app/modules/shared/some_interface.dart: -------------------------------------------------------------------------------- 1 | abstract class ISome { 2 | void printSomething(); 3 | } 4 | -------------------------------------------------------------------------------- /modular_get_own_module/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/lib/main.dart -------------------------------------------------------------------------------- /modular_get_own_module/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/pubspec.lock -------------------------------------------------------------------------------- /modular_get_own_module/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/modular_get_own_module/pubspec.yaml -------------------------------------------------------------------------------- /onesignal_push_notifications/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/onesignal_push_notifications/.gitignore -------------------------------------------------------------------------------- /onesignal_push_notifications/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/onesignal_push_notifications/.metadata -------------------------------------------------------------------------------- /onesignal_push_notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/onesignal_push_notifications/README.md -------------------------------------------------------------------------------- /onesignal_push_notifications/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /onesignal_push_notifications/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /onesignal_push_notifications/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /onesignal_push_notifications/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/onesignal_push_notifications/lib/main.dart -------------------------------------------------------------------------------- /onesignal_push_notifications/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/onesignal_push_notifications/pubspec.lock -------------------------------------------------------------------------------- /onesignal_push_notifications/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/onesignal_push_notifications/pubspec.yaml -------------------------------------------------------------------------------- /snack_bar_without_context/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/snack_bar_without_context/.gitignore -------------------------------------------------------------------------------- /snack_bar_without_context/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/snack_bar_without_context/.metadata -------------------------------------------------------------------------------- /snack_bar_without_context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/snack_bar_without_context/README.md -------------------------------------------------------------------------------- /snack_bar_without_context/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/snack_bar_without_context/ios/.gitignore -------------------------------------------------------------------------------- /snack_bar_without_context/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /snack_bar_without_context/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /snack_bar_without_context/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /snack_bar_without_context/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/snack_bar_without_context/lib/main.dart -------------------------------------------------------------------------------- /snack_bar_without_context/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/snack_bar_without_context/pubspec.lock -------------------------------------------------------------------------------- /snack_bar_without_context/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bwolfs2/how_to_do/HEAD/snack_bar_without_context/pubspec.yaml --------------------------------------------------------------------------------