├── .gitignore ├── LICENSE ├── README.md ├── dash ├── .gitignore ├── .idea │ ├── libraries │ │ └── Dart_SDK.xml │ ├── modules.xml │ └── workspace.xml ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bloc_provider.iml ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── example │ │ │ │ │ │ └── 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 │ │ ├── main.dart │ │ ├── state_management.dart │ │ └── state_management.g.dart │ └── pubspec.yaml ├── img │ └── logo_dash.png ├── lib │ ├── dash.dart │ └── src │ │ ├── annotations.dart │ │ ├── bloc.dart │ │ └── bloc_cache.dart ├── pubspec.yaml └── test │ └── bloc_provider_test.dart ├── dash_generator ├── .gitignore ├── .idea │ ├── libraries │ │ └── Dart_SDK.xml │ ├── modules.xml │ └── workspace.xml ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bloc_provider_generator.iml ├── build.yaml ├── lib │ ├── builder.dart │ ├── dash_generator.dart │ ├── sample │ │ ├── bloc_example.dart │ │ ├── main.dart │ │ ├── provider.dart │ │ └── provider.g.dart │ └── src │ │ └── bloc_provider_generator.dart ├── pubspec.yaml └── test │ └── dash_generator_test.dart └── example ├── .gitignore ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── example │ │ │ │ └── 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 ├── main.dart ├── state_management.dart └── state_management.g.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/README.md -------------------------------------------------------------------------------- /dash/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/.gitignore -------------------------------------------------------------------------------- /dash/.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /dash/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/.idea/modules.xml -------------------------------------------------------------------------------- /dash/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/.idea/workspace.xml -------------------------------------------------------------------------------- /dash/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/.metadata -------------------------------------------------------------------------------- /dash/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/CHANGELOG.md -------------------------------------------------------------------------------- /dash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/LICENSE -------------------------------------------------------------------------------- /dash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/README.md -------------------------------------------------------------------------------- /dash/bloc_provider.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/bloc_provider.iml -------------------------------------------------------------------------------- /dash/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/.gitignore -------------------------------------------------------------------------------- /dash/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/.metadata -------------------------------------------------------------------------------- /dash/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/README.md -------------------------------------------------------------------------------- /dash/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/.gitignore -------------------------------------------------------------------------------- /dash/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/build.gradle -------------------------------------------------------------------------------- /dash/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /dash/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /dash/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /dash/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /dash/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /dash/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /dash/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dash/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dash/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /dash/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /dash/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /dash/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/build.gradle -------------------------------------------------------------------------------- /dash/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/gradle.properties -------------------------------------------------------------------------------- /dash/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /dash/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/android/settings.gradle -------------------------------------------------------------------------------- /dash/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/.gitignore -------------------------------------------------------------------------------- /dash/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /dash/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dash/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /dash/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dash/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dash/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /dash/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dash/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /dash/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /dash/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /dash/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /dash/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /dash/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/lib/main.dart -------------------------------------------------------------------------------- /dash/example/lib/state_management.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/lib/state_management.dart -------------------------------------------------------------------------------- /dash/example/lib/state_management.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/lib/state_management.g.dart -------------------------------------------------------------------------------- /dash/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/example/pubspec.yaml -------------------------------------------------------------------------------- /dash/img/logo_dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/img/logo_dash.png -------------------------------------------------------------------------------- /dash/lib/dash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/lib/dash.dart -------------------------------------------------------------------------------- /dash/lib/src/annotations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/lib/src/annotations.dart -------------------------------------------------------------------------------- /dash/lib/src/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/lib/src/bloc.dart -------------------------------------------------------------------------------- /dash/lib/src/bloc_cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/lib/src/bloc_cache.dart -------------------------------------------------------------------------------- /dash/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/pubspec.yaml -------------------------------------------------------------------------------- /dash/test/bloc_provider_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash/test/bloc_provider_test.dart -------------------------------------------------------------------------------- /dash_generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/.gitignore -------------------------------------------------------------------------------- /dash_generator/.idea/libraries/Dart_SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/.idea/libraries/Dart_SDK.xml -------------------------------------------------------------------------------- /dash_generator/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/.idea/modules.xml -------------------------------------------------------------------------------- /dash_generator/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/.idea/workspace.xml -------------------------------------------------------------------------------- /dash_generator/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/.metadata -------------------------------------------------------------------------------- /dash_generator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/CHANGELOG.md -------------------------------------------------------------------------------- /dash_generator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/LICENSE -------------------------------------------------------------------------------- /dash_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/README.md -------------------------------------------------------------------------------- /dash_generator/bloc_provider_generator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/bloc_provider_generator.iml -------------------------------------------------------------------------------- /dash_generator/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/build.yaml -------------------------------------------------------------------------------- /dash_generator/lib/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/lib/builder.dart -------------------------------------------------------------------------------- /dash_generator/lib/dash_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/lib/dash_generator.dart -------------------------------------------------------------------------------- /dash_generator/lib/sample/bloc_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/lib/sample/bloc_example.dart -------------------------------------------------------------------------------- /dash_generator/lib/sample/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/lib/sample/main.dart -------------------------------------------------------------------------------- /dash_generator/lib/sample/provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/lib/sample/provider.dart -------------------------------------------------------------------------------- /dash_generator/lib/sample/provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/lib/sample/provider.g.dart -------------------------------------------------------------------------------- /dash_generator/lib/src/bloc_provider_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/lib/src/bloc_provider_generator.dart -------------------------------------------------------------------------------- /dash_generator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/pubspec.yaml -------------------------------------------------------------------------------- /dash_generator/test/dash_generator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/dash_generator/test/dash_generator_test.dart -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/state_management.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/lib/state_management.dart -------------------------------------------------------------------------------- /example/lib/state_management.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/lib/state_management.g.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ViniciusSossela/dash/HEAD/example/pubspec.yaml --------------------------------------------------------------------------------