У меня есть Touchable View в собственном приложении, предположительно, некоторый слой из иерархии делает этот touchable недоступным (кликабельным), в android кнопка работает, потому что свойство возвышения делает его сверху, но на iOS он не будет нажимать на эту область.
<ScrollView
// style={{ backgroundColor: 'green' }}
refreshControl={
<RefreshControl
refreshing={this.state.refreshing}
onRefresh={this.onRefresh.bind(this)}
/>
}>
<View >
<Text style={styles.heading2}> {this.state.heading2}</Text>
<View style={styles.daysContainer}>
<TouchableOpacity
style={styles.day1}
onPress={() => {
this.setState({ selectedDay: '1' });
}}
activeOpacity={0.5}>
<View>
<Text style={styles.daysTextStyle}>DAY 1</Text>
{this.state.selectedDay == '1' && (
<View
style={{
height: 4,
width: 30,
backgroundColor: Color.VIVID,
marginLeft: 32,
}}
/>
...
Мой вопрос: есть ли что-нибудь, что может помочь сделать его кликабельным и в iOS.