FLUTTER ECOSYSTEM

Mankeli-Software/statusbarz

Dynamic statusbar for your app

statusbarz project cover
Stars
12
Forks
8
Last push (UTC)
Jun 28, 2023
Project status
Active
Mankeli-Software GitHub avatar
GITHUB Organization

Mankeli-Software ↗

LanguagesDartSwiftKotlinObjective-C

Technical topics

Packages published by this repository

Dependencies used

Dependency list 5 items
  • flutter{"sdk":"flutter"}
  • image^4.0.0
  • dart_code_metricsDevelopment^5.6.0
  • flutter_testDevelopment{"sdk":"flutter"}
  • mankeli_analysisDevelopment^1.1.0

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

statusbarz

[CI] style: mankeli analysis pub package License

"Buy Me A Coffee"

Features

A Flutter package for dynamically changing status bar color based on the background. Can be set up to automatically change the color whenever the current route is changed. It is also possible to manually refresh the color.

Usage

Place StatusbarzCapturer above your MaterialApp widget:

void main() {
  runApp(
    StatusbarzCapturer(
      child: MaterialApp(
        home: Container(),
      ),
    ),
  );
}

Now you can manually refresh status bar color by calling:

Statusbarz.instance.refresh();

Or alternatively you can refresh automatically when the current route changes. To do this, simply add Statusbarz.instance.observer to your MaterialApps navigatorObservers:

void main() {
  runApp(
    StatusbarzCapturer(
      child: MaterialApp(
        navigatorObservers: [Statusbarz.instance.observer],
        home: Container(),
      ),
    ),
  );
}