theme_mode_builder 1.0.2 copy "theme_mode_builder: ^1.0.2" to clipboard
theme_mode_builder: ^1.0.2 copied to clipboard

A Flutter package for handling theme in an app and also saving it on the device in a hive box.

Theme Mode Builder 🚀 #

Pub Version GitHub GitHub Issues GitHub Pull Requests

  1. I created this package to help standardize my apps way of theme handling.
  2. The package uses Stacked architecture which is an overkill for this small package but YOLO.

Web Demo: https://theme-mode-builder.netlify.app/

Features: #

  • 🚀 Cross platform: mobile, desktop, browser
  • ❤ Simple, powerful, intuitive API
  • 🛡 Null Safety
  • 🎈 No native dependencies
  • 🔋 Batteries included

📚 How to Use #

Table of contents #

  1. Video
  2. Guide

Video: (A bit outdated, for v0.0.3) #


Guide: #

First run the initialization which is asynchronous so you will need to change the return type of your main() method from void to Future<void>:

Future<void> main() async {
  /// ensure widgets are initialized
  WidgetsFlutterBinding.ensureInitialized();

  /// initialize theme mode builder
  await ThemeModeBuilderConfig.ensureInitialized(
    subDir: "Theme Mode Builder Example",
  );

  /// Runs the app :)
  runApp(MyCoolApp());
}

Then just wrap your MaterialApp widget with the ThemeModeBuilder and return the MaterialApp widget from the builder. The builder gives you two arguments, builder: (BuildContext context, ThemeMode themeMode) {}. Pass the themeMode to themeMode on your MaterialApp.

Now this code below explains better than I do 🙈🚀😂:

import "package:flutter/material.dart";
import "package:theme_mode_builder/theme_mode_builder.dart";

class MyCoolApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return ThemeModeBuilder(
      builder: (BuildContext context, ThemeMode themeMode) {
        return MaterialApp(
          title: "My Cool App",

          /// here is the `themeMode` passed form the `builder`
          themeMode: themeMode,
          theme: ThemeData(
            brightness: Brightness.light,

            /// put your light theme data here
          ),
          darkTheme: ThemeData(
            brightness: Brightness.dark,

            /// put your dark theme data here
          ),
        );
      },
    );
  }
}

If you want to change the themeMode you just call: #

await ThemeModeBuilderConfig.toggleTheme();

And the theme will change instantly given you followed the steps above correctly 🎉.

Want more customization? #

To change to dark mode:

await ThemeModeBuilderConfig.setDark();

To change to light mode:

await ThemeModeBuilderConfig.setLight();

To change to system mode:

await ThemeModeBuilderConfig.setSystem();

To get the theme mode you can run: #

final ThemeMode themeMode = ThemeModeBuilderConfig.getThemeMode();

Finally, To check if the current theme is dark or not, you use this simple call: #

final bool isDarkTheme = ThemeModeBuilderConfig.isDarkTheme();
22
likes
120
pub points
30%
popularity

Publisher

unverified uploader

A Flutter package for handling theme in an app and also saving it on the device in a hive box.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, hive, hive_flutter, stacked

More

Packages that depend on theme_mode_builder