Build: Simple Fade Animation
This screen shows a box that fades in and out when you tap a button below it.
Target UI
┌─────────────────────────────┐ │ │ │ [ BOX ] │ │ │ │ │ │ [ Fade In/Out ] │ └─────────────────────────────┘
Display a colored square box in the center of the screen.
Add a button labeled 'Fade In/Out' below the box.
When the button is tapped, the box should smoothly fade out if visible, or fade in if invisible.
Use React Native Reanimated for the fade animation.
Ensure the animation duration is about 500 milliseconds.