theme_provider 0.0.1+7 theme_provider: ^0.0.1+7 copied to clipboard
Easy to use, customizable and pluggable Theme Provider. This Widget can be used to easily provide a theme controller across the widget tree.
import 'package:flutter/material.dart';
import 'package:theme_provider/theme_provider.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ThemeProvider(
themes: <AppTheme>[
AppTheme.light().copyWith(id: "light_theme"),
AppTheme.dark().copyWith(id: "dark_theme")
],
builder: (context, theme) => MaterialApp(
theme: theme,
home: HomePage(),
),
);
}
}
class HomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Example App"),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
"Current Theme: ${ThemeProvider.controllerOf(context).currentThemeId}"),
),
Padding(
padding: const EdgeInsets.all(8.0),
child: OutlineButton(
child: Text("Next Theme"),
onPressed: ThemeProvider.controllerOf(context).nextTheme,
),
),
],
),
),
);
}
}