-
Notifications
You must be signed in to change notification settings - Fork 39
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
each RuntimeWidget has a runtime instance, it has performance problem? #74
Comments
Why not use |
Thanks for your reply. Use HotSwap should place HotSwapLoader at the root of the flutter app. For example, it fix a small bug, it will generate the whole project hot update code, output a large .evc file. Any good idea to resolve it? |
Have you actually tested that this causes a performance issue? I have not spent a lot of time on loading speed and size of EVC files because so far nobody has had this issue, but probably it could be improved greatly if this was an actual problem for you.
There is no way to load multiple .evc files with a single Runtime, it is one Runtime per evc file always. |
I have not actually tested that. Many runtime instance , let the data communication becomes more complex. |
Well I would recommend that you shouldn't try to optimize performance until it is actually an issue that you have, then I can help you. |
i want to use many RuntimeWidget in flutter in order to implement hot update.
each RuntimeWidget has a runtime instance, it has performance problem?
it is possible all RuntimeWidget use a same runtime singleton ?
any good idea to use RuntimeWidget in flutter?
The text was updated successfully, but these errors were encountered: