2,466 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
76
views
How to create a hover/context menu on a VS Code status bar item (like GitHub Copilot's menu)?
I'm developing a VS Code extension and want to add a menu that appears when hovering over or clicking a status bar item, similar to how GitHub Copilot displays its menu (see screenshot):
What I Want ...
0
votes
0
answers
35
views
matplotlib: one coordinate of the mouse per y axis in status bar
I have a single plot area with plots on several axis (built using the twinx() method).
In a previous version of matplotlib, coordinates of the cursor for all axis were written in the status bar was ...
4
votes
2
answers
861
views
Xcode 26 (beta 6), iPadOS 26: StatusBar overlaps with NavigationBar after presented viewController rotates and dismissed
I want to hide status bar JUST for a presented viewController. The issue relays when the presented view appears, at first it seems there is an additional space in the navigationBar which need to be ...
1
vote
0
answers
95
views
Android 15: Status bar turns black when ActionMode is opened from Fragment (works fine in Android 14)
I'm using a Fragment where I start an ActionMode (contextual action bar) like this:
private fun startActionMode() {
actionMode = (requireActivity() as AppCompatActivity).startSupportActionMode(...
0
votes
0
answers
58
views
Dimensions.get('window').height doesn't include StatusBar.currentHeight when the Status Bar is translucent
I set the StatusBar to translucent in order to draw the app's content under the status bar (on Android 14 and earlier — Android 15 enforces edge-to-edge design by default).
According to the React ...
1
vote
1
answer
1k
views
Why is my content overlapping with the status bar in React Native, and how can I fix it?
I'm facing an issue where the status bar is overlapping the content in my React Native app. I already used SafeAreaView from react-native-safe-area-context, but it doesn't seem to work — the content ...
1
vote
1
answer
26
views
Dynamically updated href link shows old value in browser statusbar if hovered over
I have a webpage showing a download image with an associated download link.
The image is shown with an tag and the download link with an tag.
When the user clicks the image to download the file, I ...
0
votes
1
answer
75
views
Android Statusbar Overlap Issue In Flutter
I am building an app in flutter, the app bar is overlapping the status bar mainly in Oneplus and Motorola mobiles phones. I'm sharing the code files of my project
HomeView
class HomeView extends ...
0
votes
3
answers
4k
views
How to configure react-navigation to work with Android edge-to-edge after Expo SDK 53?
Android & Expo Go was working fine for me until Expo SDK 53 using @react-navigation/native.
As of SDK 53, Navigation is now working edge-to-edge, and that was not the way before, and I need to re-...
1
vote
0
answers
143
views
React Native / Expo - Double header height with StatusBar and Stack
I try to change a color of app header to light green and color of StatusBar to a bit darker. This is my _layout.tsx file:
import { Stack } from "expo-router";
import { View, StatusBar, ...
1
vote
1
answer
859
views
How to fix status bar icons being invisible in app starting from Android 15
The status bar in my app until Android 14 had a gray (default) background so the icons were always visible. Starting from Android 15, the status bar is now transparent and uses edge-to-edge, and the ...
1
vote
1
answer
71
views
Setting StatusBar dynamically using statusBarManager
This question Swift: Setting StatusBar color on IOS13+ (Using statusBarManager) has a very good answer on how to set the statusbar text color to dark or light for the whole app or for a ...
1
vote
1
answer
360
views
The status bar does not change color
I have followed all tutorials and cannot get my statusbar to change color despite having set all attributes:
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base ...
0
votes
0
answers
30
views
Can we change statusbar and bottom bar background color in react native ? because its depricated in ios and will be in android
for Now am using an overlay positioned -100 top for statusbar and -100 bottom for bottombar as mentioned below:
it looks not good but can be temporary solution
import { Dimensions, ImageBackground, ...
1
vote
0
answers
399
views
Why does the status bar in my React Native app still appear black even after using SafeAreaView and expo-status-bar?
I’m building a React Native app using Expo and have been trying to customize the status bar color, but it still shows as black on the top and bottom of the screen.
I am testing the app through the ...