Flutter implementation of Clean Architecture, inspired on the guidelines created by Uncle Bob.

Overview

clean_framework

Flutter implementation of Clean Architecture, inspired on the guidelines created by Uncle Bob.

see http://www.amazon.com/dp/0134494164/

Learning Resources Coming soon !

Introduction, to understand the relationship between the components of the framework. Navigating with CFRouter, to start using high level Navigator 2.0 APIs bundled with Clean Framework. Mockoon Installation, since the tests in the example folder require an instance of Mockoon running. Installation

  1. Depend on it

Add this to your package's pubspec.yaml file:

dependencies: clean_framework: ^1.0.0 2. Install it

You can install packages from the command line: with Flutter:

$ flutter pub get Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.

  1. Import it

Now in your Dart code, you can use:

import 'package:clean_framework/clean_framework.dart';

Check the docs directory for documentation.

Comments