BirjuVachhani / adaptive_theme

Easiest way to add support for light and dark theme in your flutter app.
https://pub.dev/packages/adaptive_theme
Apache License 2.0
464 stars 37 forks source link

syatem navigation bar color #29

Closed kephren226 closed 2 years ago

kephren226 commented 2 years ago

Hello is there a way to set system navigation bar color depending on theme ?

BirjuVachhani commented 2 years ago

You can listen to theme mode changes and set your status bar accordingly. I believe there's a package to manage that.

Check this out in README.md

AdaptiveTheme.of(context).modeChangeNotifier.addListener(() {
  // set status bar here.
});
kephren226 commented 2 years ago

Thanks I’ll close the issue for now I’ll try the solution later to see what happen