app_template 2.4.0+3 app_template: ^2.4.0+3 copied to clipboard
Create a Flutter App based on a standard design pattern using third-party packages for functions and features.
/// The app's interface
import 'package:counter_template/src/view.dart';
/// We use the MVC framework's own runApp with its innate error handling.
void main() => runApp(
CounterApp(),
errorHandler: null,
errorScreen: null,
errorReport: null,
);