Popularity
1.6
Declining
Activity
0.0
Declining
42
2
15

Programming language: TypeScript
Tags: UI Components     Miscellaneous    

react-swipe-to-delete-ios alternatives and similar libraries

Based on the "Miscellaneous" category.
Alternatively, view react-swipe-to-delete-ios alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of react-swipe-to-delete-ios or a related project?

Add another 'Miscellaneous' Library

README

react-swipe-to-delete-ios

A simple React component to reproduce the way iOS deletes an item in a list. Demo

[GIF Demo](./src/demo/demo.gif?raw=true "Title")

Installation

yarn add react-swipe-to-delete-ios

Usage

import React from 'react'
import SwipeToDelete from 'react-swipe-to-delete-ios'

...

<SwipeToDelete
  onDelete={handleDelete} // required
  height={100} // required
  // optional
  transitionDuration={250} // default
  deleteWidth={75} // default
  deleteColor="rgba(252, 58, 48, 1.00)" // default
  deleteText="Delete" // default
  deleteComponent={<DeleteComponent/>} // not default
  disabled={false} // default
>
  {children}
</SwipeToDelete>

Props

Prop Type Default
onDelete function required
height number required
transitionDuration number (ms) 250
deleteWidth number (px) 75
deleteColor string "rgba(252, 58, 48, 1.00)"
deleteText string "Delete" (deleteText or deleteComponent)
deleteComponent node null (deleteText or deleteComponent)
disabled bool false

Todo

  • [ ] Tests
  • [ ] Browser compatibility check