Я строю реактивный нативный проект. Этот код хорошо работает на Android, но не работает на ios. если я касаюсь первой половины кнопки, она работает, но касание не работает в конце кнопки.
<View style={{backgroundColor: 'red', position: 'absolute', bottom: 0, alignSelf: 'center', width: 300}}>
<TouchableOpacity onPress={()=>{console.log('clicked!');}>
<View style={{flex: 1, backgroundColor: 'blue', width: 300}}>
<Text style={{flex: 1, backgroundColor: 'green', width: '100%', textAlign: 'center'}}>
Click Me!
</Text>
</View>
</TouchableOpacity>
</View>