mvc_application 7.7.0 mvc_application: ^7.7.0 copied to clipboard
Flutter Framework for Applications using the MVC Design Pattern
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add mvc_application
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
mvc_application: ^7.7.0
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:mvc_application/controller.dart';
import 'package:mvc_application/model.dart';
import 'package:mvc_application/prefs.dart';
import 'package:mvc_application/settings.dart';
import 'package:mvc_application/view.dart';