mvcprovider 1.0.1
mvcprovider: ^1.0.1 copied to clipboard
The simplest and cleanest way to implement an MVC architecture in Flutter with the Provider package.
example/main.dart
import 'package:flutter/material.dart';
import 'mycounter/my.counter.dart';
void main() => runApp(AmazingSample());
class AmazingSample extends StatelessWidget {
// This widget is the root of this amazing package sample.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'MVC Provider counter demo',
home: MyCounterModule(),
);
}
}