Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Animated: `useNativeDriver` was not specified. This is a required option and must be explicitly set to `true` or `false`

const [animatePress, setAnimatePress] = useState(new Animated.Value(1))

const animateIn = () => {
  Animated.timing(animatePress, {
    toValue: 0.5,
    duration: 500,
    useNativeDriver: true // Add This line
  }).start();
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #This #required #option #explicitly #set
ADD COMMENT
Topic
Name
2+5 =