How to change status bar clock design - flutter

How to do like this in flutter I am using flutter/webrtc flutter/callkeep. I want to show onacitve call icon with green background when in webrtc call.
I can only change status bar background color

Related

How to Hide AppBar and change status bar color in flutter at same time?

I am new to flutter. I am making a flutter application in which I wanna hide the app bar but i want to change the colour of status bar.
Is it Possible ?
If yes then how ?
I am using Scaffold.

How do you get the color used by the icons/font at the status bar?

In Flutter, how do you get the icon/font color used at the status bar?
SystemUiOverlayStyle provides statusBarIconBrightness to set the icons bright or dark, but how do you get the actually used color?

How to show dialog background color on full screen with statusbar and navigation bar

How can i change color of statusbar and navigation bar when dialog box show in flutter i already try the SystemChrome.setSystemUiOverlay is there any other method available to change the color of statusbar and navigation bar in flutter
Here i Post picture to Image
Maybe it'll work for you.
https://pub.dev/packages/flutter_statusbarcolor_ns
A package can help you to change your flutter app's statusbar's color or navigationbar's color programmatically.
This is a fork of the original package flutter_statusbarcolor migrated to support null-safety.

Status Bar icon color in CupertinoNavigationBar in Flutter

for some time I'm facing a problem with the status bar icons color, when I'm using flutter AppBar i can change the status bar icon brightness without any problem but the issue starts when I'm trying to use the Cupertino style NavigationBar. The status bar icon are always dark, at the start of the app I'm using:
SystemChrome.setSystemUIOverlayStyle(
SystemUiOverlayStyle.light.copyWith(statusBarColor: kTeal),
);
to change the status bar color and its icon brightness and it works but immediately when I use CupertinoNavBar with teal background color the icons change to dark and I need them to stay white. Is there any solution to change their color or is it just a fixed logic inside and there is no way to change the brightness of those icons ?
Thanks in advance for any help.

How can I target status bar color or opacity in a Flutter app?

I couldn't find an attribute in the Scaffold or AppBar classes to do this. Is it possible?
You can change the text color of the status bar from light to dark using SystemChrome.setSystemUIOverlayStyle. For example, to make the status bar font black:
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.dark);
However, the AppBar widget also calls setSystemUIOverlayStyle in its build function and may interfere with you. If you're building an app that uses AppBar widget, you should probably set the brightness on your AppBar to be Brightness.dark (if you want a light text status bar) or Brightness.light (if you want a dark text status bar).
To hide the status indicator entirely, use SystemChrome.setEnabledSystemUIOverlays.
I'm not sure if Flutter has an API for customize the text opacity or background color. There isn't a background at all on iOS, but you could draw one yourself.
// set status bar color with opacity
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light.copyWith(
statusBarColor: Color(0x22CACACA)
));
You can set status bar color(CACACA part after 0x22).
You can set color opacity(22 part after 0x).