Oddbean new post about | logout
 The status bar is black icons on black background

https://friends.grishka.me/i/N7tpDu4b5F6_gVOyWale3vyDKJtIAqaUDkO51cU3rJM/q:93/bG9jYWw6Ly8vcy91cGxvYWRzL3Bvc3RfbWVkaWEvOTMwYzY0NWI2MTE5NjdhZDc4OTk4ZTE2MTYzZGI1MDgud2VicA.jpg 
 @a7ce5937 Oops! Will fix that! 
 @a7ce5937 what screen was that on? profile? 
 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