flutter_command 2.0.1 copy "flutter_command: ^2.0.1" to clipboard
flutter_command: ^2.0.1 copied to clipboard

flutter_command is a way to manage your state based on `ValueListenable` and the `Command` design pattern.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_weather_demo/weather_manager.dart';

import 'homepage.dart';

void main() => runApp(MyApp());

/// In a real app you would use some locator like get_it or provider
/// to access your business objects. To keep the focus on the commands we use here
/// a global variable.
WeatherManager weatherManager = WeatherManager();

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(title: 'Flutter Demo', home: HomePage());
  }
}
69
likes
120
pub points
83%
popularity

Publisher

unverified uploader

flutter_command is a way to manage your state based on `ValueListenable` and the `Command` design pattern.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, functional_listener, quiver

More

Packages that depend on flutter_command