rx_command 6.0.1 rx_command: ^6.0.1 copied to clipboard
Reactive event handler wrapper class inspired by ReactiveUI.
import 'package:flutter/material.dart';
import 'homepage.dart';
import 'weather_viewmodel.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
// This widget is the root of your application.
@override
MyAppState createState() {
return MyAppState();
}
}
class MyAppState extends State<MyApp> {
late WeatherViewModel viewModelData;
@override
void initState() {
viewModelData = WeatherViewModel();
super.initState();
}
@override
Widget build(BuildContext context) {
// Place the Inherited Widget at the very base of the Widget tree
return TheViewModel(
theModel: viewModelData,
child: MaterialApp(title: 'Flutter Demo', home: HomePage()),
);
}
}
// InheritedWidgets allow you to propagate values down the widgettree.
// it can then be accessed by just writing TheViewModel.of(context)
class TheViewModel extends InheritedWidget {
final WeatherViewModel theModel;
const TheViewModel({Key? key, required this.theModel, required Widget child})
: super(key: key, child: child);
static WeatherViewModel of(BuildContext context) =>
context!.dependOnInheritedWidgetOfExactType<TheViewModel>()!.theModel;
@override
bool updateShouldNotify(TheViewModel oldWidget) =>
theModel != oldWidget.theModel;
}