()
| 2 | import { Animated, Button } from 'react-native' |
| 3 | |
| 4 | export default function MyComponent() { |
| 5 | const value = useRef(new Animated.Value(0)) |
| 6 | |
| 7 | return ( |
| 8 | <> |
| 9 | <Button title="Animate" /> |
| 10 | <Animated.Text style={{ opacity: value.current, fontSize: 42 }}> |
| 11 | Hello! |
| 12 | </Animated.Text> |
| 13 | </> |
| 14 | ) |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected