clean_framework 0.1.6
clean_framework: ^0.1.6 copied to clipboard
Clean Architecture components library, inspired on the guidelines created by Uncle Bob.
example/lib/main.dart
import 'package:clean_framework/clean_framework.dart';
import 'package:clean_framework_example/example_feature/ui/example_feature_widget.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'example_locator.dart';
void main() {
logger().setLogLevel(LogLevel.verbose);
runApp(
MaterialApp(
home: ExampleFeatureWidget(),
),
);
}
/// 8-Jul Changes
/// New class JsonResponseBlocCallbackHandler
/// Bloc to own Entity creation and share the reference to usecases those that needs it.
/// Within usecase updates on the Entity should happen on the instance created by Bloc.
/// Fix testcases