Questions tagged [statusbar]

A status bar is an area typically found at the bottom of Graphical User Interfaces that provide information about the computer, the application or other applications.

2321 questions
0
votes
1 answer

Ionic 5 ion-searchbar in header overlapping with status bar in ios

In my Ionic 5 application I have a ion-searchbar in the header. It is overlapping with the status bar in ios. page.html
Tapas Mukherjee
  • 1,556
  • 1
  • 14
  • 37
0
votes
0 answers

I want to show the status bar with back color in my Flutter Application

import 'package:flutter/services.dart'; void main() { runApp(MyApp()); SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom]); } I used this to hide the status bar Now I want my status bar again by commenting this I did not get the…
0
votes
0 answers

Can't hide status bar in iOS 14 swift app

Everywhere I found this solution: override var prefersStatusBarHidden: Bool { return false } So I decided to add it, but my status bar are still visible. I can't disable it in my view. This is my code for now: import UIKit class…
Yardi
  • 143
  • 1
  • 11
0
votes
1 answer

Status bar does not appear in Flutter

I have this empty page : import 'package:flutter/material.dart'; class MyOrdersClass extends StatefulWidget { @override _MyOrdersClassState createState() => _MyOrdersClassState(); } class _MyOrdersClassState extends State { …
Laila Mattar
  • 271
  • 1
  • 9
0
votes
1 answer

vba Word - statusbar is flickering due to calculations

I want to use the statusbar for update Information during long calculations in Word. However, the statusbar flickers and switches back to the "normal" statusbar during calculations. Example: Sub main() Dim i As Integer Dim j As Long Dim…
musbach
  • 426
  • 1
  • 7
  • 21
0
votes
0 answers

Bash: Is there a more efficient way of getting RAM used in percentage by /proc/meminfo

This is the code I made, it does work, but I know is bad and not really efficient #!/urs/bin/bash ramav="$(($(grep -m1 'MemAvailable:' /proc/meminfo | awk '{print $2}') / 1024))" ramtotal="$(($(grep -m1 'MemTotal:' /proc/meminfo | awk '{print $2}')…
Kruel
  • 1
  • 1
0
votes
0 answers

Error occurring when trying to show animation in the Visual Studio Status Bar in VSIX solution

When trying to show an animation in the status bar in my VSIX solution, I keep getting this error: Unable to cast object of type 'System.Threading.Tasks.ContinuationResultTaskFromResultTask`2[System.Object,System.Object]' to type…
scantwell71
  • 1
  • 1
  • 1
0
votes
1 answer

Why status bar background is different on Android and iOS

Why from the code bellow Android displays grey background around status bar and iOS white? And how they can be made identical? main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { …
Simeon
  • 3
  • 1
0
votes
2 answers

Scaffold Status Bar Blocking Button Touch

Although I am in full screen mode where status bar is hidden but still my menu button on top right corner is not receiving touch. You can see in picture where I have selected the top bar which is receiving the touch. Half of my menu button is…
Noor Ali Butt
  • 740
  • 6
  • 23
0
votes
0 answers

How to add functions (e.g. Reload) to a PWA Standalone App Status Bar?

How to add functions to a PWA Standalone App Status Bar. Like seen here in this app in a Standalone mode (attached image or link https://www.urzagatherer.app/ ) - Reload & Back. Thanks Olli
0
votes
1 answer

How to make the navigation and status bar light without it being deprecated in Kotlin

I'm making the Navigation bar light and status bar light themed in Kotlin with this code: window.statusBarColor = ContextCompat.getColor(this@MainActivity, R.color.white) window.navigationBarColor = ContextCompat.getColor(this@MainActivity,…
Amy
  • 503
  • 5
  • 18
0
votes
1 answer

Show wx.MenuItems's Help String in a determined wx.StatusBar's Field

Premise: I'm creating a little wx.Frame with a wx.StatusBar with 3 Fields, the one on the left and the one on the right smaller and the one on the center bigger. Now, By Default, when i put the mouse on a wx.MenuItem the wx.StatusBar set as Status…
Leonardo Scotti
  • 905
  • 3
  • 20
0
votes
1 answer

MFC: Changing from CDialog to CWnd now the CStatusBar doesn't show?

To work around a problem with a CDialog being minimized when main window was minimized I decided to try using a CWnd instead. That works but now the CStatusBar doesn't show? What might I be missing or is there some requirement for it to show? The…
user3161924
  • 856
  • 9
  • 23
0
votes
1 answer

Is it possible to change status bar icon color to white? Or is there a dark theme status bar? (Kotlin)

In my app, I've changed the background color of the status bar to black with : window.statusBarColor = ContextCompat.getColor(this@MainActivity, R.color.black) (And it works). But now, you can't see the status bar icons! And yes, I've heard of:…
Amy
  • 503
  • 5
  • 18
0
votes
2 answers

Xamarin.Forms.Shell: how to manage StatusBar color

I've developed a small Xamarin.Forms.Shell app and I didn't found how to apply a custom color for the StatusBar Foreground and Background. My app use a very basic color scheme: black for the Foreground of the NavigationBar and the TabBar white for…
Gold.strike
  • 1,002
  • 11
  • 32
1 2 3
99
100