mvcprovider 1.0.4 copy "mvcprovider: ^1.0.4" to clipboard
mvcprovider: ^1.0.4 copied to clipboard

outdated

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(),
    );
  }
}
7
likes
0
points
4
downloads

Publisher

verified publishermrdiez.com

Weekly Downloads

The simplest and cleanest way to implement an MVC architecture in Flutter with the Provider package.

Repository (GitLab)
View/report issues

License

unknown (license)

Dependencies

flutter, provider

More

Packages that depend on mvcprovider