theme_mode_handler 1.0.0 copy "theme_mode_handler: ^1.0.0" to clipboard
theme_mode_handler: ^1.0.0 copied to clipboard

outdated

Widget to change themeMode during runtime and persist it across restarts

theme_mode_handler #

All Contributors

Widget to change themeMode during runtime and persist it across restarts.

Motivation #

Flutter 1.9 introduced a new way to control which theme is used: MaterialApp.themeMode. If you have specified the darkTheme and theme properties, you can use themeMode to control it. The property defaults to ThemeMode.system.

This package wraps this functionality and allows you to persist and retrieve the user's preference.

Installation #

Add this to your pubspec.yaml:

dependencies:
  theme_mode_handler: ^1.0.0

Usage #

  • Import the package and wrap MaterialApp with the widget:
import 'package:theme_mode_handler/theme_mode_handler.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return ThemeModeHandler(
      builder: (ThemeMode themeMode) {
        return MaterialApp(
          themeMode: themeMode,
          darkTheme: ThemeData(
            brightness: Brightness.dark,
          ),
          theme: ThemeData(
            brightness: Brightness.light,
          ),
          home: MyHomePage(title: 'Flutter Demo Home Page'),
        );
      },
    );
  }
}
  • Change the themeMode with:
ThemeModeHandler.of(context).setThemeMode(value);

This updates the shared preference.

  • Get the current themeMode with:
ThemeModeHandler.of(context).themeMode;

Extra #

This package exports a dialog and a method to simplify its usage.

  • Import the dialog with:
import 'package:theme_mode_handler/theme_picker_dialog.dart';
  • Use it like this:
void _selectThemeMode(BuildContext context) async {
  final newThemeMode = await showThemePickerDialog(context: context);
  print(newThemeMode);
}

A complete example can be found on the example folder.

Inspiration #

This package is inspired and based on the great package dynamic_theme.

Contributors ✨ #

Thanks goes to these wonderful people (emoji key):


Arthur Denner

💻 🎨 💡 🚧

This project follows the all-contributors specification. Contributions of any kind welcome!

License #

MIT © Arthur Denner

20
likes
40
pub points
84%
popularity

Publisher

unverified uploader

Widget to change themeMode during runtime and persist it across restarts

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, shared_preferences

More

Packages that depend on theme_mode_handler