-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PR] Flutter loading time and web renderers #4
Conversation
When I visit: https://flutter-phoenix-channels-frontend.fly.dev/ I see the loading screen: When I manually refresh the page it loads the actual app: I wasn't able to reproduce this in any other browser so I consider it a "fluke" not an issue worth reporting. 👌 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@LuchoTurtle good write-up. You've changed my mind on the splash screens. It's not as bad as I suspected and substantially improves perf score on lighthouse. Nice one. 👌
CC: @SimonLab worth checking this one over to update your knowledge. 💭 |
This is perhaps because the initialization of the engine only occurs when the user first visits the page. The downloaded elements are cached on subsequent visits. |
related to dwyl/app#315
This PR improves the
Flutter
app by adding a splash screen and writes a section about theLighthouse
metrics difference between using acanvaskit
andhtml
renderer.