├── .github └── workflows │ ├── bloc_presentation-publish.yml │ ├── bloc_presentation-test.yml │ ├── bloc_presentation_test-publish.yml │ └── bloc_presentation_test-test.yml ├── README.md └── packages ├── bloc_presentation ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ ├── .gitignore │ ├── .metadata │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── bloc_presentation_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── comment_cubit.dart │ │ └── main.dart │ └── pubspec.yaml ├── lib │ ├── bloc_presentation.dart │ └── src │ │ ├── bloc_presentation_listener.dart │ │ └── bloc_presentation_mixin.dart ├── pubspec.yaml └── test │ ├── bloc_presentation_listener_test.dart │ ├── bloc_presentation_mixin_test.dart │ └── fakes.dart └── bloc_presentation_test ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── lib │ └── main.dart └── pubspec.yaml ├── lib ├── bloc_presentation_test.dart └── src │ ├── bloc_presentation_test.dart │ ├── mock_presentation_bloc.dart │ └── when_listen_presentation.dart ├── pubspec.yaml └── test ├── bloc_presentation_test_test.dart ├── cubits ├── async_counter_cubit.dart ├── counter_cubit.dart ├── cubits.dart ├── delayed_counter_cubit.dart ├── error_counter_cubit.dart ├── events.dart ├── exception_counter_cubit.dart ├── multi_counter_cubit.dart ├── non_equatable_counter_cubit.dart └── side_effect_counter_cubit.dart └── when_listen_presentation_test.dart /.github/workflows/bloc_presentation-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/.github/workflows/bloc_presentation-publish.yml -------------------------------------------------------------------------------- /.github/workflows/bloc_presentation-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/.github/workflows/bloc_presentation-test.yml -------------------------------------------------------------------------------- /.github/workflows/bloc_presentation_test-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/.github/workflows/bloc_presentation_test-publish.yml -------------------------------------------------------------------------------- /.github/workflows/bloc_presentation_test-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/.github/workflows/bloc_presentation_test-test.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/README.md -------------------------------------------------------------------------------- /packages/bloc_presentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/.gitignore -------------------------------------------------------------------------------- /packages/bloc_presentation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/CHANGELOG.md -------------------------------------------------------------------------------- /packages/bloc_presentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/LICENSE -------------------------------------------------------------------------------- /packages/bloc_presentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/README.md -------------------------------------------------------------------------------- /packages/bloc_presentation/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/analysis_options.yaml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/.gitignore -------------------------------------------------------------------------------- /packages/bloc_presentation/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/.metadata -------------------------------------------------------------------------------- /packages/bloc_presentation/example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:leancode_lint/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/.gitignore -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/build.gradle -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/kotlin/com/example/bloc_presentation_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/kotlin/com/example/bloc_presentation_example/MainActivity.kt -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/build.gradle -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/gradle.properties -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /packages/bloc_presentation/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/android/settings.gradle -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/.gitignore -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /packages/bloc_presentation/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /packages/bloc_presentation/example/lib/comment_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/lib/comment_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/lib/main.dart -------------------------------------------------------------------------------- /packages/bloc_presentation/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/bloc_presentation/lib/bloc_presentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/lib/bloc_presentation.dart -------------------------------------------------------------------------------- /packages/bloc_presentation/lib/src/bloc_presentation_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/lib/src/bloc_presentation_listener.dart -------------------------------------------------------------------------------- /packages/bloc_presentation/lib/src/bloc_presentation_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/lib/src/bloc_presentation_mixin.dart -------------------------------------------------------------------------------- /packages/bloc_presentation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/pubspec.yaml -------------------------------------------------------------------------------- /packages/bloc_presentation/test/bloc_presentation_listener_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/test/bloc_presentation_listener_test.dart -------------------------------------------------------------------------------- /packages/bloc_presentation/test/bloc_presentation_mixin_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/test/bloc_presentation_mixin_test.dart -------------------------------------------------------------------------------- /packages/bloc_presentation/test/fakes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation/test/fakes.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/.gitignore -------------------------------------------------------------------------------- /packages/bloc_presentation_test/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/.metadata -------------------------------------------------------------------------------- /packages/bloc_presentation_test/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/CHANGELOG.md -------------------------------------------------------------------------------- /packages/bloc_presentation_test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/LICENSE -------------------------------------------------------------------------------- /packages/bloc_presentation_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/README.md -------------------------------------------------------------------------------- /packages/bloc_presentation_test/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/analysis_options.yaml -------------------------------------------------------------------------------- /packages/bloc_presentation_test/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/example/.gitignore -------------------------------------------------------------------------------- /packages/bloc_presentation_test/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/example/.metadata -------------------------------------------------------------------------------- /packages/bloc_presentation_test/example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:leancode_lint/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /packages/bloc_presentation_test/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/example/lib/main.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/bloc_presentation_test/lib/bloc_presentation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/lib/bloc_presentation_test.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/lib/src/bloc_presentation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/lib/src/bloc_presentation_test.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/lib/src/mock_presentation_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/lib/src/mock_presentation_bloc.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/lib/src/when_listen_presentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/lib/src/when_listen_presentation.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/pubspec.yaml -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/bloc_presentation_test_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/bloc_presentation_test_test.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/async_counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/async_counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/cubits.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/cubits.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/delayed_counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/delayed_counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/error_counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/error_counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/events.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/exception_counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/exception_counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/multi_counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/multi_counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/non_equatable_counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/non_equatable_counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/cubits/side_effect_counter_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/cubits/side_effect_counter_cubit.dart -------------------------------------------------------------------------------- /packages/bloc_presentation_test/test/when_listen_presentation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leancodepl/bloc_presentation/HEAD/packages/bloc_presentation_test/test/when_listen_presentation_test.dart --------------------------------------------------------------------------------