Email or username:

Password:

Forgot your password?
Top-level
Григорий Клюшников

The status bar is black icons on black background

4 comments
Григорий Клюшников

dansup, home timeline but it's actually on all screens. It feels like you forgot to set flags for your window so it doesn't extend behind the status bar. Try something like getActivity().getDecorView().setSystemUiVisibility(getActivity().getDecorView().getSystemUiVisibility() | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
Also check that you are handling the window insets correctly if you override fitSystemWindows and/or onApplyWindowInsets.

dansup

@grishka This is a react native app lol, I see the problem, system light mode combined with in-app light mode.

Go to Settings -> App Settings and toggle Dark mode for a temporary solution, I will work on a fix

Go Up