I'm trying to change status bar text color and background color. Background color changes with no issue but the text color is not changing only on Android 12. I tried to change as JSX but that doesn't work too. Is there any other way to do it?
I'm using built-in StatusBar.
useEffect(() => {
if (darkMode) {
StatusBar.setBackgroundColor("#101010", true);
StatusBar.setBarStyle("light-content", true)
} else {
StatusBar.setBackgroundColor("white", true);
StatusBar.setBarStyle("dark-content", true)
}
}, [darkMode])