react-native-swipeout-component
Version:
`React Native Swipeout` is a customizable swipeable row component for React Native, allowing you to create swipe actions like deleting, archiving, or other actions you might want to trigger with a swipe.
16 lines (15 loc) • 381 B
TypeScript
import React from 'react';
interface SwipeoutBtnProps {
backgroundColor?: string;
color?: string;
component?: React.ReactNode;
onPress?: () => void;
text?: string;
type?: string;
underlayColor?: string;
height?: number;
width?: number;
disabled?: boolean;
}
declare const SwipeoutBtn: React.FC<SwipeoutBtnProps>;
export default SwipeoutBtn;