反应本机可滑动(滑动以删除)未关闭

时间:2019-11-24 20:31:55

标签: ios react-native swipe react-native-gesture-handler

我正在使用来自React-Native-Gesture-Handler的Swipeable合并要在我的页面上删除的滑动。 当我按Delete键时,联系人将被删除,但可滑动式保持打开状态。

我希望它在按下后关闭,但我似乎不知道该怎么做。

这是我的代码:

const RightActions = (progress, dragX) => { 
return (
<TouchableOpacity onPress={()=>{DeleteContact(i)}}>
  <View style={[ContactsStyles.rightAction]}>
    <Text style={ContactsStyles.actionText}>Delete</Text>
  </View>
</TouchableOpacity>
) 
}

这是我可滑动的地方:

<Swipeable renderRightActions={RightActions} >

     <View style={ContactsStyles.UserContainer}>

         <Text numberOfLines={1} style={[Fonts.Name]}> {obj.firstname} {obj.lastname} </Text>


         {/* Message/Call Container */}
          <View style={ContactsStyles.ImageCont}>
                    {/* Message */}
                    <TouchableOpacity onPress={()  => Communications.text(obj.phone, 'Hey ' + obj.firstname + ', im in need of a Ryde. Are you able to pick me up? This is my current location: ' + location)} >
                      <View style={ContactsStyles.ImageBox}>
                        <Image style={ContactsStyles.Image} source={require('../../assets/icons/message.png')} />
                      </View>
                    </TouchableOpacity>

                    {/* Call */}
                    <TouchableOpacity onPress = {() => Communications.phonecall( obj.phone , true)}>
                      <View style={ContactsStyles.ImageBox}>
                        <Image style={ContactsStyles.Image} source={require('../../assets/icons/phone.png')} />
                      </View>
                    </TouchableOpacity>
                  </View>
                  {/* End of Message/Call Container */}
      </View>
</Swipeable>

Swipeable button doesnt disappear after on press

2 个答案:

答案 0 :(得分:2)

您需要使用带有close方法的引用。

首先定义一个参考

const swipeableRef = useRef(null);

然后将其分配给Swipeable

<Swipeable
  ref={swipeableRef}
  renderLeftActions={renderLeftActions}
  onSwipeableLeftOpen={() => handleComplete(item)}
>
    ...
</Swipeable>

然后只需调用close方法

const closeSwipeable = () => {
  swipeableRef.current.close();
}

请注意,对于多个可滑动式广告,您应该拥有multiple refs

let row: Array<any> = [];
let prevOpenedRow;

renderItem ({ item, index }) {
  return (
    <Swipeable
      ref={ref => row[index] = ref}
      friction={2}
      leftThreshold={80}
      rightThreshold={40}
      renderRightActions={renderRightActions}
      containerStyle={style.swipeRowStyle}
      onSwipeableOpen={closeRow(index)}
      ...
    >
    ...
    </Swipeable>);
}

closeRow(index) {
  if (prevOpenedRow && prevOpenedRow !== row[index]) {
    prevOpenedRow.close();
  }
  prevOpenedRow = row[index];
}

答案 1 :(得分:0)

我有同样的问题。我要做的就是在删除特定项目之前先将状态数组(显示在列表中)设置为[]。它清理了屏幕(包括操作面板)并渲染了新项目。

我的代码的一部分:

const [notes, setNotes] = useState([]);

<FlatList
        data={notes}
......

删除便笺后,我做了:setNotes([]),然后再设置setNotes(newNotes)