app_manager 0.1.1 copy "app_manager: ^0.1.1" to clipboard
app_manager: ^0.1.1 copied to clipboard

A lightweight Flutter package that simplifies the customization of Flutter apps.

example/lib/main.dart

import 'package:app_manager/app_manager.dart';
import 'package:app_manager_example/app_manager/config.dart';
import 'package:app_manager_example/home_page.dart';
import 'package:flutter/material.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return AppManagerScope(
      config: ManagerConfig(),
      child: const MaterialApp(
        home: HomePage(),
      ),
    );
  }
}
1
likes
160
pub points
0%
popularity

Publisher

verified publisheremresoysuren.com

A lightweight Flutter package that simplifies the customization of Flutter apps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, shared_preferences

More

Packages that depend on app_manager