wstore 1.0.4 copy "wstore: ^1.0.4" to clipboard
wstore: ^1.0.4 copied to clipboard

A state management library that helps add reactivity to widgets

example/lib/main.dart

import 'package:example/pages/main_page.dart';
import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'WStore builder',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const MainPage(),
      debugShowCheckedModeBanner: false,
    );
  }
}
6
likes
155
pub points
60%
popularity

Publisher

verified publisherdevmaslove.ru

A state management library that helps add reactivity to widgets

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on wstore