Hot reload es una de las características más apreciadas de Flutter — te permite ver cambios de código reflejados en la aplicación en ejecución casi instantáneamente (menos de un segundo), sin reiniciar la aplicación ni perder su estado actual. Acelera dramáticamente el desarrollo y la experimentación.
Qué hace 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.
