Hot reload, Flutter'ın en sevilen özelliklerinden biridir — kod değişikliklerini çalışan uygulamada neredeyse anında (saniyenin altında) yansıtmanızı sağlar, uygulamayı yeniden başlatmadan veya mevcut durumunu kaybetmeden. Geliştirmeyi ve denemeyi dramatik olarak hızlandırır.
Hot reload ne yapar
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.
