flutter_obs 0.0.2 copy "flutter_obs: ^0.0.2" to clipboard
flutter_obs: ^0.0.2 copied to clipboard

a easy flutter state management, the source code is less than 100, but you can use it to implement global and local states

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(),
    );
  }
}
0
likes
150
points
95
downloads

Publisher

unverified uploader

Weekly Downloads

a easy flutter state management, the source code is less than 100, but you can use it to implement global and local states

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_obs