Open
Description
In version 2.8.1, this update caused this issue
<TouchableOpacity onPress={() => doScrollToBottom()}>
<Animated.View
style={[
stylesCommon.centerItems,
styles.scrollToBottomStyle,
scrollToBottomStyle,
scrollToBottomStyleAnim,
]}>
{renderScrollBottomComponent()}
</Animated.View>
</TouchableOpacity>
Changing to this can fix this issue
<Animated.View
style={[
stylesCommon.centerItems,
styles.scrollToBottomStyle,
scrollToBottomStyle,
scrollToBottomStyleAnim,
]}>
<TouchableOpacity onPress={() => doScrollToBottom()}>
{renderScrollBottomComponent()}
</TouchableOpacity>
</Animated.View>
Metadata
Metadata
Assignees
Labels
No labels