flutter_obs 1.2.4
flutter_obs: ^1.2.4 copied to clipboard
A easy state management, It is an enhanced version of ValueNotifier
example/lib/main.dart
import 'package:flutter/material.dart';
import 'pages/home.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
materialTapTargetSize: MaterialTapTargetSize.padded,
),
home: const HomePage(),
);
}
}