Skip to content

👨🏽‍💻Rolin

Developer

White screen on Android with Flutter Unity

Last week I faced the issue that the Unity part was showing a white screen instead of the loading screen.
I was searching through the issue list of the repository I found an answer to solve this problem.

With the export from Unity a line is missing inside the following file: unityLibrary/src/main/res/values/styles.xml

You need to add the following code between the resource tag.

<string name="game_view_content_description">Game view</string>

Here is the link to issue and answer.