skip to Main Content

Flutter: iPad status bar color cut in half

When I try to set status bar color using library (flutter_statusbarcolor_ns) or directly using direct flutter code: void _setStatusBarColor(Color color) { SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle( statusBarColor: color, )); } Status bar color is not getting set properly. It is working in ipad portrait…

VIEW QUESTION

hide statusbar in flutter

When I want to hide the status bar, it gets hidden but a black bar takes its place. How can I fix this? ' void main()async { runApp(MyApp()); SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersive); } ''' and I use all of these feilds : '''…

VIEW QUESTION

React Native status bar semi transparent

Is it possible to make StatusBar semi-transparent with an opacity of 0.8? if I pass backgroundColor={"transparent"} like in the docs it becomes fully transparent without color. Docs https://reactnative.dev/docs/statusbar <StatusBar style="light" backgroundColor={"red"} translucent />

VIEW QUESTION

Cant hide status bar – Ios swift

Cant hide status bar. Is it possible on iPhones with an eyebrow? In ViewController: ... override var prefersStatusBarHidden: Bool { return true } ... override func viewDidLoad() { super.viewDidLoad() print(prefersStatusBarHidden) // true } ...

VIEW QUESTION
Back To Top
Search