prop_commands 0.1.0 copy "prop_commands: ^0.1.0" to clipboard
prop_commands: ^0.1.0 copied to clipboard

A set of utility classes for creating properties and commands in classes that extend ChangeNotifier.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'pages/root/root_page.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
          useMaterial3: true,
          colorScheme: ColorScheme.fromSeed(seedColor: Colors.teal)),
      home: const SafeArea(
        child: RootPage(),
      ),
    );
  }
}
1
likes
160
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

A set of utility classes for creating properties and commands in classes that extend ChangeNotifier.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on prop_commands