flutter_theme_manager 0.0.2+7
flutter_theme_manager: ^0.0.2+7 copied to clipboard
We Provide light and dark theme in very simple way. we Know that passing the theme in whole app is very difficult and we need to write lot of code only for theme.
Control your light and dark theme in very simple way.
Features #
Package handle Day & Night(light & Dark) theme.
Getting started #
List prerequisites and provide or point to information on how to start using the package.
Usage #
const like = void main() {
runApp(const MyApp());
}
/// this is root of application
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
/// Simple call the themeBlocProvider and passing home
return themeBlocProvider(home:Home(),debugShowCheckedModeBanner: true );
}
}
/// "provide theme to app through call AppTheme.theme and passing context,lightTheme color and darkThemeColor".
style: TextStyle(
color: AppTheme.theme(
context: context,
darkTheme: Colors.white,
lightTheme: Colors.black)),;
Additional information #
Through use this package you can pass your theme in very simple way by passing the light and dark color on same time.