flutter_command 7.0.0 flutter_command: ^7.0.0 copied to clipboard
flutter_command is a way to manage your state based on `ValueListenable` and the `Command` design pattern.
import 'package:flutter/material.dart';
import 'package:flutter_command/flutter_command.dart';
import 'package:flutter_weather_demo/weather_manager.dart';
import 'homepage.dart';
void main() {
Command.reportAllExceptions = true;
Command.globalExceptionHandler = (ex, stack) {
print(ex.toString());
print(stack.toString());
};
runApp(MyApp());
}
/// In a real app you would use some locator like get_it or provider
/// to access your business objects. To keep the focus on the commands we use here
/// a global variable.
WeatherManager weatherManager = WeatherManager();
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(title: 'Flutter Demo', home: HomePage());
}
}