gskinnerTeam / flutter-wonderous-app

A showcase app for the Flutter SDK. Wonderous will educate and entertain as you uncover information about some of the most famous structures in the world.
MIT License
4.02k stars 947 forks source link

Web: App hangs on splash screen on Android #164

Closed kevmoo closed 9 months ago

kevmoo commented 9 months ago

Tried on SEVERAL different devices.

mit-mit commented 9 months ago

I speculate that this is an issue in the splash screen plugin, and suggest we conditionally remove the use of that plugin on web.

esDotDev commented 9 months ago

I was able to reproduce this, and according to the debug console in chrome this was an issue calling the FlutterDisplayMode.setHighRefreshRate method which is only supported on Android.

I've deployed the latest version which includes a fix for the platform-check and this method should no longer be called.

It's loading good over here. Can you check if this is still reproduceable on your end? You may need to clear your cache.

kevmoo commented 9 months ago

Confirmed! Thanks so much!