在以前的开发中,为了实现用户不一样手势操做可以对应不一样的功能,咱们考虑使用React-Native的API——PanResponder,实现识别用户的手势,实现不一样的功能。但咱们很快就发现,这样简单的实现,无任何反馈的话,用户很难知道具备这样的功能。所以,咱们准备实现相似手机QQ消息界面的左滑出现几个按钮。使用react-native的第三方框架react-native-swipeout能够很简单的实现此功能。react
框架的github地址: react-native-swipeoutgit
能够使用npm install --save react-native-swipeout
或 yarn add react-native-swipeout
命令安装框架github
在框架的github项目中,开发者给出以下的示例代码npm
import Swipeout from 'react-native-swipeout'; // Buttons var swipeoutBtns = [ { text: 'Button' } ] // Swipeout component <Swipeout right={swipeoutBtns}> <View> <Text>Swipe me left</Text> </View> </Swipeout>
阅读框架github项目中的文档,咱们能够知道框架中实现了Swipeout组件,具备如下属性(props)react-native
Prop | Type | Optional | Default | Description |
---|---|---|---|---|
autoClose | bool | Yes | false | 是否会自动关闭按钮列表 |
backgroundColor | string | Yes | '#dbddde' | 背景颜色 |
close | bool | Yes | 当前列是否会关闭按钮 | |
disabled | bool | Yes | false | 是否禁用swipeout |
left | array | Yes | [] | 右滑时出如今左侧的按钮列表 |
onOpen | func | Yes | (sectionID, rowId, direction: string) => void 按钮列表开启会执行的函数 |
|
onClose | func | Yes | (sectionID, rowId, direction: string) => void 按钮列表关闭会执行的函数 |
|
right | array | Yes | [] | 左滑时出如今右侧的按钮列表 |
scroll | func | Yes | prevent parent scroll | |
style | style | Yes | style of the container | |
sensitivity | number | Yes | 50 | change the sensitivity of gesture |
buttonWidth | number | Yes | each button width |
left和right属性应为形如[{ text: 'Button' }]
的列表,其中支持的属性以下框架
Prop | Type | Optional | Default | Description |
---|---|---|---|---|
backgroundColor | string | Yes | '#b6bec0' | 按钮的背景颜色 |
color | string | Yes | '#ffffff' | 字体颜色 |
component | ReactNode | Yes | null | pass custom component to button |
onPress | func | Yes | null | 按下后执行的函数 |
text | string | Yes | 'Click Me' | text |
type | string | Yes | 'default' | default, delete, primary, secondary |
underlayColor | string | Yes | null | 按时按钮背景颜色 |
disabled | bool | Yes | false | 是否禁用此按钮 |
_renderItem = (item) => { var BtnsLeft = [{ text: '清空', type: 'delete', onPress: ()=> console.log('清空列表')}]; var BtnsRight = [{ text: '删除', type: 'delete', onPress: ()=>console.log('删除单行数据')}]; return( <Swipeout close={!(this.state.sectionID === 'historylist' && this.state.rowID === Id)} right={BtnsRight} left={BtnsLeft} rowID={Id} sectionID='historylist' autoClose={true} backgroundColor='white' onOpen={(sectionId, rowId, direction: string) => { this.setState({ rowID: rowId, sectionID: sectionId }); }} scroll={event => console.log('scroll event') } > <View style={flatStylesWithAvatar.cell} > 具体内容 </View> </Swipeout> ) };
在渲染列表中的单行数据时,左右滑动能够出现不一样操做的对应按钮,实现效果以下:函数