microstate 1.0.0 copy "microstate: ^1.0.0" to clipboard
microstate: ^1.0.0 copied to clipboard

A lightweight, reactive state management solution for Flutter applications with built-in history tracking, validation, debouncing, and throttling capabilities.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:microstate_example/counter_example.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Microstate Examples',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const CounterPage(),
    );
  }
}
5
likes
160
points
14
downloads

Documentation

Documentation
API reference

Publisher

verified publisherflutteroiditservices.in

Weekly Downloads

A lightweight, reactive state management solution for Flutter applications with built-in history tracking, validation, debouncing, and throttling capabilities.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on microstate