Popularity
1.8
Growing
Activity
0.0
Stable
53
2
17
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. -
@restpace/schema-form
A React component package for generating forms based on (almost) the full power of JSON Schema -
react-advanced-news-ticker
A powerful, flexible, lightweight and animated vertical news ticker component for React. -
react-pulse-text
The usePulseText hook creates an animated text effect that makes string content progressively appear or disappear following a specified pattern. -
react-pagespeed-score
DISCONTINUED. A React component for display a dial-type chart of PageSpeed Insights.
SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
Promo
surveyjs.io

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