为什么反应原生的Swipeout无效?

时间:2016-09-28 08:32:45

标签: listview swipe react-native-android

我正在使用react-native Swipeout但是在添加了npm包之后,但是它显示了一些错误,我发布错误消息截图请在下面详细介绍。

manual page

npm install react-native-swipeout

npm install --save react-native-swipeout

导入的套餐

import React, { Component, PropTypes } from 'react';
import {Text, View} from 'react-native';

import Swipeout from 'react-native-swipeout';

代码

let swipeBtns = [{
    text: 'Delete',
    backgroundColor: '#FF0000'
}];
<Swipeout 
   right={swipeBtns}>
    <View>
       <Text style={styles.items_name_txt}>{rowData.name}</Text>
       <View style={styles.items_list_view_line}></View>
    </View>
</Swipeout>

请仔细阅读我的代码,并向我提出一些解决方案。

1 个答案:

答案 0 :(得分:1)

这将不再适用,因为React Native自推出以来发生了重大变化。库所有者更新了包,但未发布新更改。

将package.json更改为 “react-native-swipeout”:“https://github.com/dancormier/react-native-swipeout.git

这应该可以解决您的问题