Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bzurkow/swipeable-modal-react-native
A react-native modal component with built in swipe animations.
https://github.com/bzurkow/swipeable-modal-react-native
Last synced: about 2 months ago
JSON representation
A react-native modal component with built in swipe animations.
- Host: GitHub
- URL: https://github.com/bzurkow/swipeable-modal-react-native
- Owner: bzurkow
- Created: 2018-11-19T18:23:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-19T19:53:01.000Z (about 6 years ago)
- Last Synced: 2024-10-10T23:12:25.678Z (2 months ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-react-native - swipeable-modal-react-native - A 'pop-up' modal that can be swiped away left or right to run different functions. (Components / UI)
- awesome-react-native - swipeable-modal-react-native - A 'pop-up' modal that can be swiped away left or right to run different functions. (Components / UI)
- awesome-react-native - swipeable-modal-react-native - A 'pop-up' modal that can be swiped away left or right to run different functions. (Components / UI)
- awesome-react-native - swipeable-modal-react-native - A 'pop-up' modal that can be swiped away left or right to run different functions. (Components / UI)
README
# About
This package delivers a lightweight "pop up" modal that can be swiped right or left. Each direction can receive it's own function to do whatever you would like it to!
[Screenshot](./screenshots/ModalOpen.jpeg)
[Screenshot](./screenshots/Right.jpeg)# Usage
## Install
```
npm install --save swipeable-modal-react-native
```## Basic Set Up
```
import React, { Component } from 'react';
import { Text, View } from 'react-native';
import PopUp from 'swipeable-modal-react-native';export default class Something extends Component {
render() {
return (
{/*
Put whatever you want to display in the modal here!
*/}
)
}
}
```Under the default settings, a button will be rendered like such:
[Screenshot](./screenshots/DefaultButton.jpeg)
This can be disabled by props.
# Props
1. `showButton`
2. `buttonText`
3. `buttonColor`
4. `buttonContainerStyle`
5. `buttonTextStyle`
6. `modalTransparent`
7. `modalOpen`
8. `animatedViewStyle`
9. `modalOpenAnimation`
10. `onSwipeRight`
11. `onSwipeLeft`## 1. showButton
* Default: `true`
* Type: boolean
* Use: Determines whether or not a button will render to open the modal## 2. buttonText
* Default `Click Me!`
* Type: string
* Use: Sets the text to display in the button## 3. buttonColor
* Default `#1BA9DF`
* Type: string of hexcode or rgb value
* Use: Sets the background color of the button. NOTE: this will be reset if backgroundColor is set in buttonContainerStyle.## 4. buttonContainerStyle
* Default: `{backgroundColor: '#1BA9DF', borderRadius: 10}`
* Type: object
* Use: Sets the style properties of the button's `` container## 5. buttonTextStyle
* Default: `{padding: 20, color: '#fff'}`
* Type: object
* Use: Sets the style properties of the button's `` element## 6. modalTransparent
* Default: `true`
* Type: boolean
* Use: If `true`, displays rendered content behind modal content. If `false`, blocks non-modal content## 7. modalOpen
* Default: `false`
* Type: boolean
* Use: To trigger the modal's visibility. If you choose not render the button you have the option to initialize the compenent as true or open it as a side effect once. If the button is visible, you can reopen the modal as many times as you please.## 8. animatedViewStyle
* Default:
```
{
backgroundColor: '#fff',
borderRadius: 10,
height: height-85,
width: width-50,
marginTop: 60,
marginBottom: 25,
marginLeft: 25,
marginRight: 25,
}
```
* Type: object
* Use: An animated view is used to display content. This sets that container's style property.## 9. modalOpenAnimation
* Default: 'slide'
* Type: Enum: `none`, `slide`, `fade`
* Use: Sets the animation type of the modal content when it opens.## 10. onSwipeLeft
* Default: undefined
* Type: function
* Use: Sets a function to be called when a user swipes left on the modal. You do not need to reset or close the modal on a swipe, that is done automatically.## 11. onSwipeRight
* Default: undefined
* Type: function
* Use: Sets a function to be called when a user swipes right on the modal. You do not need to reset or close the modal on a swipe, that is done automatically.