Hot reload é uma das funcionalidades mais adoradas do Flutter — permite que você veja mudanças de código refletidas no app em execução quase instantaneamente (sub-segundo), sem reiniciar o app ou perder seu estado atual. Isso acelera dramaticamente o desenvolvimento e experimentação.
O que hot reload faz
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.
