You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, is it possible to change the statusbar color of the splash screen (android)? I already tried the following things:
Changing primaryColorDark and statusBarColor of Kitten Tricks's splash theme in values/styles.xml. This will work for the start of the splash screen, but after a few milliseconds the status bar color of the splash screen changes back to gray.
Changing the backgroundcolor of androidStatusBar in /src/app/app.json also doesn't work.
Lastly I tried adding a StatusBar with my preferred color inside the AppLoading (/src/app/app-loading.component.tsx) component which again doesn't work:
Hi, is it possible to change the statusbar color of the splash screen (android)? I already tried the following things:
Changing primaryColorDark and statusBarColor of Kitten Tricks's splash theme in values/styles.xml. This will work for the start of the splash screen, but after a few milliseconds the status bar color of the splash screen changes back to gray.
Changing the backgroundcolor of androidStatusBar in /src/app/app.json also doesn't work.
Lastly I tried adding a StatusBar with my preferred color inside the AppLoading (/src/app/app-loading.component.tsx) component which again doesn't work:
<React.Fragment>
<StatusBar backgroundColor="black"/>
{!loading && props.children(loadingResult)}
{props.placeholder && props.placeholder({ loading })}
</React.Fragment>
The text was updated successfully, but these errors were encountered: