How to animate the backgroundColor of a ScrollView in React Native
问题 I want to animate the backgroundColor of a ScrollView, but always get a warning - and a non-animating ScrollView. Am I hitting a bug? Or is it simply not supported on a ScrollView? (It does work on a regular View.) I'm testing using Expo on an iOS iPhone. Relevant code snippets: <Animated.ScrollView contentContainerStyle={[ styles.container, this.getCurrentColorOfBackground() ]}> <Text onPress={this.onPress} style={styles.question}> {this.state.question} </Text> </Animated.ScrollView> the