Hi @ryantrem
i use this babylonjs solution on android system for react native:
class CustomLoadingScreen implements ILoadingScreen {
//optional, but needed due to interface definitions
public loadingUIBackgroundColor: string
constructor(public loadingUIText: string) {}
public displayLoadingUI() {
alert(this.loadingUIText);
}
public hideLoadingUI() {
alert("Loaded!");
}
}
How to use something else instead of alert, e.g. progres icon or just text, self closing
Thanks
Assuming there are no issues with ILoadingScreen in Babylon React Native though, then this is really more of a React Native question (about components and UI) than a Babylon question, so you might find more folks with suggestions on React Native specific forums or Stack Overflow.