Popularity
1.6
Declining
Activity
0.0
Stable
44
2
16
Monthly Downloads: 0
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.
-
react-facebook
Facebook components like a Login button, Like, Share, Chat, Comments, Page or Embedded Post -
react-avatar
Universal avatar makes it possible to fetch/generate an avatar based on the information you have about that user. -
react-file-reader-input
React file input component for complete control over styling and abstraction from file reading. -
react-headings
โ Auto-increment your HTML headings (h1, h2, etc.) for improved accessibility and SEO. -
react-advanced-news-ticker
A powerful, flexible, lightweight and animated vertical news ticker component for React. -
@restpace/schema-form
A React component package for generating forms based on (almost) the full power of JSON Schema -
react-pagespeed-score
DISCONTINUED. A React component for display a dial-type chart of PageSpeed Insights.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of react-swipe-to-delete-ios or a related project?
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