Hot reload is een van Flutter's meest geliefde functies — het laat je codewijzigingen bijna onmiddellijk in de actieve app zien (sub-seconde), zonder de app opnieuw op te starten of de huidige status te verliezen. Het versnelt de ontwikkeling en experimentatie dramatisch.
Wat hot reload doet
HOT RELOAD injects updated code into the RUNNING app:
→ make a code change → save → see it reflected in ~1 second
→ the app KEEPS its current STATE (you stay on the same screen, with the same data)
→ no full restart, no re-navigating to where you were
→ Edit UI/logic and see the result almost immediately while the app runs.
