├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yaml ├── .gitignore ├── .idea └── runConfigurations │ ├── development.xml │ ├── production.xml │ └── staging.xml ├── .metadata ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── development │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launch_image.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── ic_launch_image.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ │ ├── profile │ │ └── AndroidManifest.xml │ │ └── staging │ │ ├── ic_launcher-playstore.png │ │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── coverage.sh ├── coverage_badge.svg ├── docs ├── files.gif ├── registration.gif └── video.gif ├── 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 │ │ ├── development.xcscheme │ │ ├── production.xcscheme │ │ └── staging.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon-dev.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── AppIcon-stg.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ └── Contents.json │ ├── Contents.json │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage@1x.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── l10n.yaml ├── lib ├── app │ └── app.dart ├── bootstrap.dart ├── files │ ├── bloc │ │ ├── file_bloc_new.dart │ │ ├── file_cubit.dart │ │ ├── file_cubit_common.dart │ │ ├── file_cubit_old.dart │ │ ├── file_events.dart │ │ └── file_state.dart │ ├── file_repo.dart │ └── view │ │ └── file_view.dart ├── home │ └── home_page.dart ├── l10n │ ├── arb │ │ └── app_en.arb │ └── l10n.dart ├── main_development.dart ├── main_production.dart ├── main_staging.dart ├── registration │ ├── bloc │ │ ├── registration_bloc.dart │ │ ├── registration_bloc_new.dart │ │ ├── registration_bloc_old.dart │ │ ├── registration_events.dart │ │ └── registration_state.dart │ ├── models │ │ └── username_input.dart │ ├── registration_repo.dart │ └── view │ │ └── registration_view.dart ├── settings │ └── app_configuration.dart └── video │ ├── bloc │ ├── video_stream_bloc.dart │ ├── video_stream_bloc_new.dart │ ├── video_stream_bloc_old.dart │ ├── video_stream_events.dart │ └── video_stream_state.dart │ ├── video_streaming_repo.dart │ └── view │ └── video_stream_view.dart ├── pubspec.lock ├── pubspec.yaml ├── test ├── app │ └── app_test.dart ├── files │ ├── bloc │ │ └── file_bloc_test.dart │ ├── file_mocks.dart │ ├── file_repo_test.dart │ └── view │ │ └── file_view_test.dart ├── helpers │ ├── helpers.dart │ ├── pump_app.dart │ └── video_frame.dart ├── home │ └── home_page_test.dart ├── registration │ ├── bloc │ │ ├── registration_bloc_test.dart │ │ └── registration_state_test.dart │ ├── registration_mocks.dart │ ├── registration_repo_test.dart │ └── view │ │ └── registration_view_test.dart └── video │ ├── bloc │ └── video_bloc_test.dart │ ├── video_streaming_repo_test.dart │ └── view │ └── video_stream_view_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png └── favicon.png ├── index.html └── manifest.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/runConfigurations/development.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.idea/runConfigurations/development.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/production.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.idea/runConfigurations/production.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/staging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.idea/runConfigurations/staging.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/development/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/development/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/ic_launch_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/drawable/ic_launch_image.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/development/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/development/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/development/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/development/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/development/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launch_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/drawable/ic_launch_image.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/staging/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/ic_launcher-playstore.png -------------------------------------------------------------------------------- /android/app/src/staging/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/coverage.sh -------------------------------------------------------------------------------- /coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/coverage_badge.svg -------------------------------------------------------------------------------- /docs/files.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/docs/files.gif -------------------------------------------------------------------------------- /docs/registration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/docs/registration.gif -------------------------------------------------------------------------------- /docs/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/docs/video.gif -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/development.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/172.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/196.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/216.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/48.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/55.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/88.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/172.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/196.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/216.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/48.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/55.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/88.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/bootstrap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/bootstrap.dart -------------------------------------------------------------------------------- /lib/files/bloc/file_bloc_new.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/bloc/file_bloc_new.dart -------------------------------------------------------------------------------- /lib/files/bloc/file_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/bloc/file_cubit.dart -------------------------------------------------------------------------------- /lib/files/bloc/file_cubit_common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/bloc/file_cubit_common.dart -------------------------------------------------------------------------------- /lib/files/bloc/file_cubit_old.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/bloc/file_cubit_old.dart -------------------------------------------------------------------------------- /lib/files/bloc/file_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/bloc/file_events.dart -------------------------------------------------------------------------------- /lib/files/bloc/file_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/bloc/file_state.dart -------------------------------------------------------------------------------- /lib/files/file_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/file_repo.dart -------------------------------------------------------------------------------- /lib/files/view/file_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/files/view/file_view.dart -------------------------------------------------------------------------------- /lib/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/home/home_page.dart -------------------------------------------------------------------------------- /lib/l10n/arb/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/l10n/arb/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/l10n/l10n.dart -------------------------------------------------------------------------------- /lib/main_development.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/main_development.dart -------------------------------------------------------------------------------- /lib/main_production.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/main_production.dart -------------------------------------------------------------------------------- /lib/main_staging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/main_staging.dart -------------------------------------------------------------------------------- /lib/registration/bloc/registration_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/bloc/registration_bloc.dart -------------------------------------------------------------------------------- /lib/registration/bloc/registration_bloc_new.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/bloc/registration_bloc_new.dart -------------------------------------------------------------------------------- /lib/registration/bloc/registration_bloc_old.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/bloc/registration_bloc_old.dart -------------------------------------------------------------------------------- /lib/registration/bloc/registration_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/bloc/registration_events.dart -------------------------------------------------------------------------------- /lib/registration/bloc/registration_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/bloc/registration_state.dart -------------------------------------------------------------------------------- /lib/registration/models/username_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/models/username_input.dart -------------------------------------------------------------------------------- /lib/registration/registration_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/registration_repo.dart -------------------------------------------------------------------------------- /lib/registration/view/registration_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/registration/view/registration_view.dart -------------------------------------------------------------------------------- /lib/settings/app_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/settings/app_configuration.dart -------------------------------------------------------------------------------- /lib/video/bloc/video_stream_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/video/bloc/video_stream_bloc.dart -------------------------------------------------------------------------------- /lib/video/bloc/video_stream_bloc_new.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/video/bloc/video_stream_bloc_new.dart -------------------------------------------------------------------------------- /lib/video/bloc/video_stream_bloc_old.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/video/bloc/video_stream_bloc_old.dart -------------------------------------------------------------------------------- /lib/video/bloc/video_stream_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/video/bloc/video_stream_events.dart -------------------------------------------------------------------------------- /lib/video/bloc/video_stream_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/video/bloc/video_stream_state.dart -------------------------------------------------------------------------------- /lib/video/video_streaming_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/video/video_streaming_repo.dart -------------------------------------------------------------------------------- /lib/video/view/video_stream_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/lib/video/view/video_stream_view.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/app/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/app/app_test.dart -------------------------------------------------------------------------------- /test/files/bloc/file_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/files/bloc/file_bloc_test.dart -------------------------------------------------------------------------------- /test/files/file_mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/files/file_mocks.dart -------------------------------------------------------------------------------- /test/files/file_repo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/files/file_repo_test.dart -------------------------------------------------------------------------------- /test/files/view/file_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/files/view/file_view_test.dart -------------------------------------------------------------------------------- /test/helpers/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/helpers/helpers.dart -------------------------------------------------------------------------------- /test/helpers/pump_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/helpers/pump_app.dart -------------------------------------------------------------------------------- /test/helpers/video_frame.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/helpers/video_frame.dart -------------------------------------------------------------------------------- /test/home/home_page_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/home/home_page_test.dart -------------------------------------------------------------------------------- /test/registration/bloc/registration_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/registration/bloc/registration_bloc_test.dart -------------------------------------------------------------------------------- /test/registration/bloc/registration_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/registration/bloc/registration_state_test.dart -------------------------------------------------------------------------------- /test/registration/registration_mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/registration/registration_mocks.dart -------------------------------------------------------------------------------- /test/registration/registration_repo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/registration/registration_repo_test.dart -------------------------------------------------------------------------------- /test/registration/view/registration_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/registration/view/registration_view_test.dart -------------------------------------------------------------------------------- /test/video/bloc/video_bloc_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/video/bloc/video_bloc_test.dart -------------------------------------------------------------------------------- /test/video/video_streaming_repo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/video/video_streaming_repo_test.dart -------------------------------------------------------------------------------- /test/video/view/video_stream_view_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/test/video/view/video_stream_view_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/web/icons/favicon.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VGVentures/bloc_concurrency_demos/HEAD/web/manifest.json --------------------------------------------------------------------------------