flutter_control 0.8.96 copy "flutter_control: ^0.8.96" to clipboard
flutter_control: ^0.8.96 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(),
    );
  }
}
21
likes
0
points
189
downloads

Publisher

verified publisherbasecontrol.dev

Weekly Downloads

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