kherel / animated_theme_switcher

Flutter animated theme switcher
https://pub.dev/packages/animated_theme_switcher
MIT License
278 stars 28 forks source link

Icon moon to sun and back theme switcher #33

Closed chitgoks closed 3 years ago

chitgoks commented 3 years ago

Possible to have like in the example sidebar where the icon changes from moon to sun?

hnrq commented 3 years ago
Icon(ThemeProvider.of(context)?.brightness == Brightness.light ? Icons.dark_mode_outlined : Icons.dark_mode);

Then you replace for the Icons you want. At least that's how I did

chitgoks commented 3 years ago

yes sorry. forgot to close. i did it like that