mxc_application 1.1.0 copy "mxc_application: ^1.1.0" to clipboard
mxc_application: ^1.1.0 copied to clipboard

discontinued
outdated

Application Framework in the MVC Design Pattern using plugins and packages prior to the AndroidX migration.

example/main.dart

// https://github.com/fluttercommunity/flutter_contacts/tree/master/example
// https://pub.dartlang.org/packages/contacts_service#-readme-tab-

import 'package:flutter/material.dart' show runApp;

import 'package:mxc_application/mvc.dart' show MVC;

import 'view.dart' show ContactsExampleApp;

void main() => runApp(MVC(ContactsExampleApp()));