flutter_control 0.8.98 copy "flutter_control: ^0.8.98" to clipboard
flutter_control: ^0.8.98 copied to clipboard

outdated

Flutter Control is library to simply maintain App and State management. Provides some basic Widgets and Controllers to start with.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_control/core.dart';

import 'cards_controller.dart';
import 'cards_page.dart';

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

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return BaseApp(
      title: 'Flutter Control Example',
      locales: {
        'en': 'assets/localization/en.json',
      },
      entries: {
        'cards': CardsController(),
      },
      initializers: {
        DetailController: () => DetailController(),
      },
      root: (context) => CardsPage(),
    );
  }
}
19
likes
0
pub points
44%
popularity

Publisher

verified publisherbasecontrol.dev

Flutter Control is library to simply maintain App and State management. Provides some basic Widgets and Controllers to start with.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, shared_preferences

More

Packages that depend on flutter_control