Oddbean new post about | logout
 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. 
 @a7ce5937 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