Build: Simple Key-Value Storage
This screen lets the user save a text value using SharedPreferences and load it back to display.
Target UI
------------------------- | Simple Key-Value Storage | ------------------------- | Enter text: | | [______________] | | | | [Save] [Load] | | | | Saved value: | | [____________________] | -------------------------
A TextField for user input
A Save button that stores the input text in SharedPreferences with key 'myKey'
A Load button that retrieves the stored text and shows it below
Display the saved value in a Text widget
Use proper async handling for SharedPreferences
UI should be simple and clear