Hot reload என்பது Flutter-ன் மிகவும் பிரியமான ஒரு feature — இது code மாற்றங்களை running app-ல் கிட்டத்தட்ட உடனடியாக (sub-second) காட்டுகிறது, app-ஐ restart செய்யாமல் அல்லது அதன் current state-ஐ இழக்காமல். இது development மற்றும் experimentation-ஐ வியத்தகமாக வேகப்படுத்துகிறது.
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.
