Hot reload è una delle funzionalità più amate di Flutter — ti permette di vedere i cambiamenti del codice riflessi nell'app in esecuzione quasi istantaneamente (meno di un secondo), senza riavviare l'app o perdere il suo stato attuale. Accelera drammaticamente lo sviluppo e la sperimentazione.
Cosa fa hot reload
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.
