- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了 react native 模式,但当用户尝试单击它时,TouchableOpacity 和按钮不会被单击,为什么会这样?
代码:(第 1 部分)
<Modal
animationType="slide"
transparent={false}
visible={this.state.modalVisible}
onRequestClose={() => {
Alert.alert('Modal has been closed.');
}}>
<View style={{marginTop: 22}}>
<View>
<FilterScreen/>
<TouchableHighlight
onPress={() =>
this._setModalVisible(!this.state.modalVisible)
}>
<Text>Hide Modal</Text>
</TouchableHighlight>
</View>
</View>
</Modal>
FilterScreen 组件:
return(
<View>
<TouchableOpacity>
<Text>Inside Filter screen</Text>
</TouchableOpacity>
</View>
)
在上面的代码中,我添加了 FilterScreen 组件,其中包含 touchableOpacity ,但是当模态打开时,我无法单击 toucableopacity 组件,它只在模态中显示它,但 onClick 不起作用。
代码:(第 2 部分)
<Modal
animationType="slide"
transparent={false}
visible={this.state.modalVisible}
onRequestClose={() => {
Alert.alert('Modal has been closed.');
}}>
<View style={{marginTop: 22}}>
<View>
<TouchableOpacity>
<Text>Inside Filter screen</Text>
</TouchableOpacity>
<TouchableHighlight
onPress={() =>
this._setModalVisible(!this.state.modalVisible)
}>
<Text>Hide Modal</Text>
</TouchableHighlight>
</View>
</View>
</Modal>
如果我在 Modal 中添加 touchableOpacity ,上面的代码就会运行,但在 filterscreen 中添加相同的代码却无法通过添加组件来工作,为什么会这样呢?
注意:第 1 部分不起作用,但第 2 部分代码可以工作,为什么会这样?
最佳答案
我的问题是我从react-native-gesture-handler
包导入了TouchableOpacity
,而不是默认的react-native
包裹。这是我自动完成选择将其解析为的包。将导入更改为其他包后,它再次按预期工作。
import { TouchableOpacity } from 'react-native';
关于javascript - TouchableOpacity 和按钮在 react native 模态中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55389359/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!