Hot Reload ist eines der beliebtesten Features von Flutter – es ermöglicht es dir, Code-Änderungen fast sofort im laufenden App gespiegelt zu sehen (unter einer Sekunde), ohne die App neu zu starten oder den aktuellen Status zu verlieren. Es beschleunigt die Entwicklung und das Experimentieren dramatisch.
Was Hot Reload bewirkt
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.
