theme_provider 0.2.0+1 theme_provider: ^0.2.0+1 copied to clipboard
Easy to use and customizable Theme Provider. This Widget can be used to easily provide a theme controller across the widget tree.
theme_provider #
Easy to use, customizable Theme Provider. This is still a work in progress.
Basic Usage | Dialog Box |
---|---|
Include in your project #
dependencies:
theme_provider: ^0.2.0
run packages get and import it
import 'package:theme_provider/theme_provider.dart';
Usage #
Wrap your material app like this to use dark theme and light theme out of the box.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ThemeProvider(
builder: (theme) => MaterialApp(
home: HomePage(),
theme: theme,
),
);
}
}
Or to provide additional themes, wrap like this:
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ThemeProvider(
themes: [
AppTheme.light(), // This is standard light theme (id is default_light_theme)
AppTheme.dark(), // This is standard dark theme (id is default_dark_theme)
AppTheme(
id: "custom_theme", // Id(or name) of the theme(Has to be unique)
data: ThemeData( // Real theme data
primaryColor: Colors.black,
accentColor: Colors.red,
),
),
],
builder: (theme) => MaterialApp(
home: HomePage(),
theme: theme,
),
);
}
}
To change the theme:
ThemeProvider.controllerOf(context).nextTheme();
// Or
ThemeProvider.controllerOf(context).setTheme(THEME_ID);
Access current AppTheme
ThemeProvider.themeOf(context)
Access theme data:
ThemeProvider.themeOf(context).data
// or
Theme.of(context)
Passing Additional Options #
This can also be used to pass additional data associated with the theme. Use options
to pass additional data that should be associated with the theme.
eg: If font color on a specific button changes create a class to encapsulate the value.
class ThemeOptions{
final Color specificButtonColor;
ThemeOptions(this.specificButtonColor);
}
Then provide the options with the theme.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ThemeProvider(
themes: [
AppTheme<ThemeOptions>(
id: "light_theme",
data: ThemeData.light(),
options: ThemeOptions(Colors.blue),
),
AppTheme<ThemeOptions>(
id: "light_theme",
data: ThemeData.dark(),
options: ThemeOptions(Colors.red),
),
],
builder: (theme) => MaterialApp(
home: HomePage(),
theme: theme,
),
);
}
}
Then the option can be retrieved as,
ThemeProvider.optionsOf<ThemeOptions>(context).specificButtonColor
Persisting theme #
Saving theme #
To persist themes simply pass saveThemesOnChange
as true
.
This will ensure that the theme is saved to the disk.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ThemeProvider(
saveThemesOnChange: true,
builder: (theme) => MaterialApp(
home: HomePage(),
theme: theme,
),
);
}
}
Loading saved theme #
defaultThemeId
will be used to determine the initial theme.
But you can load thee previous theme by using:
ThemeProvider.controllerOf(context).loadThemeFromDisk();
Warning: Loading from disk will cause your app to be refreshed(which may cause a flicker) So it is recommended that if you use this feature, show a splash screen or use a theme agnostic startup screen so the refreshing won't be visible to the user.
Example: Login screen may be designed so that it looks same in all screens. When the theme loads, it won't be noticeable to the user. Load the theme in that screen and then the other screens can be themed.
Additional Widgets #
Theme Cycle Widget #
IconButton
to be added to AppBar
to cycle to next theme.
Scaffold(
appBar: AppBar(
title: Text("Example App"),
actions: [CycleThemeIconButton()]
),
),
Theme Selecting Dialog #
SimpleDialog
to let the user select the theme.
Many elements in this dialog is customizable.
showDialog(context: context, builder: (_) => ThemeDialog())
TODO #
- ✅ Add next theme command
- ✅ Add theme cycling widget
- ✅ Add theme selection by theme id
- ✅ Add theme select and preview widget
- ✅ Persist current selected theme
- ✅ Add unit tests and example
- ✅ Remove provider dependency
- ❌ Add widget - theme selector grid
- ❌ Add dark mode support and automatic mode switch
- ❌ Ids for theme_prociders to allow multiple theme providers
- ❌ Add example to demostrate persistence
Bugs/Requests #
If you encounter any problems feel free to open an issue. Pull request are also welcome.