Build: Secure Data Storage
This screen lets users save and retrieve a secret message securely using SecureStore.
Target UI
┌───────────────────────────────┐ │ Secure Data Storage │ ├───────────────────────────────┤ │ Secret Message: │ │ [__________________________] │ │ │ │ [Save Secret] [Load Secret] │ │ │ │ Loaded Secret: │ │ [__________________________] │ └───────────────────────────────┘
Add a TextInput for user to enter a secret message.
Add a 'Save Secret' button that saves the message securely using SecureStore.
Add a 'Load Secret' button that retrieves the saved message and displays it.
Show the loaded secret below the buttons.
Handle errors gracefully with alerts.
Use React Native functional components and hooks.