React Native 怎么点一个按钮跳到新页面

发布网友 发布时间:2022-04-23 22:42

我来回答

2个回答

懂视网 时间:2022-05-15 07:52

这次给大家带来React Native怎样实现悬浮按钮,React Native实现悬浮按钮的注意事项有哪些,下面就是实战案例,一起来看一下。

React Native悬浮按钮组件:react-native-action-button,纯JS组件,支持安卓和IOS双平台,支持设置子按钮,支持自定义位置和样式和图标。

效果图

安装方法

npm i react-native-action-button --save
react-native link react-native-vector-icons

因为用到了react-native-vector-icons图标组件,需要做下link。如果你项目中已经使用了react-native-vector-icons,那就不需要这步了。

示例代码

<View style={styles.container}>
 <Text style={styles.welcome}>
 悬浮按钮组件示例
 </Text>
 <ActionButton buttonColor="rgba(231,76,60,1)" position='left' verticalOrientation='up'>
 <ActionButton.Item buttonColor='#9b59b6' title="New Task" onPress={() => console.log("notes tapped!")}>
 <Icon name="ios-create-outline" style={styles.actionButtonIcon} />
 </ActionButton.Item>
 <ActionButton.Item buttonColor='#3498db' title="Notifications" onPress={() => {}}>
 <Icon name="ios-notifications-off" style={styles.actionButtonIcon} />
 </ActionButton.Item>
 <ActionButton.Item buttonColor='#1abc9c' onPress={() => {}}>
 <Icon name="ios-done-all-outline" style={styles.actionButtonIcon} />
 </ActionButton.Item>
 </ActionButton>
 <ActionButton
 buttonColor="rgba(231,76,60,1)"
 onPress={() => { alert('你点了我!')}}
 renderIcon={() => (<View style={styles.actionButtonView}><Icon name="ios-create-outline" style={styles.actionButtonIcon} />
 <Text style={styles.actionButtonText}>新增</Text>
 </View>)}
 />
 </View>

主要参数说明

ActionButton

  1. size:按钮的大小,默认为56

  2. active:是否显示按钮

  3. position:按钮的位置,可以为left center right

  4. offsetX:X轴上的偏移位置

  5. offsetY:Y轴上的偏移位置

  6. onPress:点击事件

  7. onLongPress:长按事件

  8. buttonText:按钮标题

  9. verticalOrientation:弹出按钮的方向,up 或者 down

  10. renderIcon:可以自定义按钮显示的样式,默认是一个加号

ActionButton.Item

  1. size:按钮的大小,默认为56

  2. title:按钮标题

  3. buttonColor:按钮颜色

  4. onPress:点击事件

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

webpack移动端自动化构建rem步骤详解

Angular5对组件标签添加样式class步骤说明

热心网友 时间:2022-05-15 05:00

需自备Mac OSX , XCode , node 以及 npm 。 做好准备之后,打开终端(或其他命令行利器),键入下面命令: npm install -g react-native-cli 和 react-native...

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com