gpt4 book ai didi

react-native - React Native 中的导航返回点击事件

转载 作者:行者123 更新时间:2023-12-04 17:33:29 24 4
gpt4 key购买 nike

我正在开发 React Native 应用程序。我在我的应用程序中使用导航。我想在用户按下后退导航时执行某些操作,即移动到后退屏幕。

enter image description here

如何获取上图中“blacked circle Frage”的点击事件。我在做IOS

最佳答案

使用自定义 header

import { Header } from "native-base";

并在您的路由文件中添加以下代码以禁用默认 header 。

navigationOptions: {
header: null
}

我的客户 header 代码供您引用

<Header style={styles.header}>
<View style={{ flex: 2 }}>
<TouchableOpacity
style={styles.iconButton}
onPress={() => { this.createNote(); this.props.navigation.navigate('Home') }}>
<Icon name="arrow-back" size={28} color="#606060" />
</TouchableOpacity>
</View>
<View style={{ flex: 8 }}></View>
<View style={{ flex: 2 }}>
<TouchableOpacity
style={styles.iconButton}
onPress={() => { this.createNote(); this.props.navigation.navigate('Home') }}>
<Icon name="check" size={28} color="#606060" />
</TouchableOpacity>
</View>
</Header>

引用链接:- https://www.npmjs.com/package/native-base

关于react-native - React Native 中的导航返回点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57693802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com