Closed
Description
<View style={{height: 200, backgroundColor: 'white'}}>
<ViewOverflow style={{width: 200, height: 100, backgroundColor: 'pink'}}>
<View style={{width: 100, height: 100, position: 'absolute', left: 100, bottom: -50, backgroundColor: 'yellow'}}>
<TouchableHighlight onPress={() => { console.log(1) }}>
<View style={{backgroundColor: 'skyblue', height: '100%'}} />
</TouchableHighlight>
</View>
</ViewOverflow>
</View>