AppLoading Customization?

Is there any way to customize the AppLoading screen? Right now I am rendering the AppLoading screen when I have to load images and fonts, but the default one from Expo is just a plain white screen which is weird because my bottomTabNavigator is a dark color. I don’t see any way to customize this and I tried to wrap it in a View but it doesn’t seem like it helps either. Any idea how to style the AppLoading screen?

return (
        <View style={{backgroundColor:"black"}}>
          <AppLoading
            startAsync={this._cacheResourcesAsync}
            onFinish={() => this.setState({ isReady: true })}
            onError={console.warn}
          />
        </View>
      );

https://docs.expo.io/versions/v32.0.0/guides/splash-screens/

also see examples on https://docs.expo.io/versions/v32.0.0/sdk/app-loading/

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.