Open varunrau opened 5 years ago
I've moved Animated.View inside ScrollView and it works
<Animated.ScrollView ...>
<Animated.View
style={{ height: storiesHeight, width, transform: [{ translateX: x }] }}>
{this._renderStories()}
</Animated.View>
</Animated.ScrollView>
Tapping on the TextInput in the Story doesn't do anything. It seems like the ScrollView is not propagating touches to the TextInput in the Story component.
Is there a way to allow the scrollview to allow the TextInput to receive the touch and respond to the scroll?