You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, webdev supports hot restart. But developing in this mode gets difficult as applications grow. It would be nice to see hot reloading without losing state added as a feature.
The text was updated successfully, but these errors were encountered:
Note that dwds is just a proxy between the UI and Chrome that pretends to be a VM. As a result, we do not have access to the heap, which is what the real VM needs to implement stateful hot reload.
As a result, supporting hot reload actually needs to be done in the dev compiler (dwds and webdev would only need minor modifications after, if any):
Please note that this is a big feature and will take time to design and implement. We are not sure at this time that a reasonable implementation is possible. We don't have it currently planned, but are thinking about investigating it in the future.
Also, please see the conversation in flutter request for the same feature: flutter/flutter#53041
Currently,
webdev
supports hot restart. But developing in this mode gets difficult as applications grow. It would be nice to see hot reloading without losing state added as a feature.The text was updated successfully, but these errors were encountered: