https://github.com/ripeworks/react-native-slide-alert
A slide from top alert view
https://github.com/ripeworks/react-native-slide-alert
Last synced: 11 months ago
JSON representation
A slide from top alert view
- Host: GitHub
- URL: https://github.com/ripeworks/react-native-slide-alert
- Owner: ripeworks
- Created: 2017-06-09T12:54:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-09T13:02:13.000Z (over 8 years ago)
- Last Synced: 2025-02-05T18:03:02.043Z (about 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-native-slide-alert
A slide from top alert view
## Usage
```js
// MyComponent.js
import { AlertBar } from 'react-native-slide-alert'
export default () =>
// AnotherComponent.js
import Alert from 'react-native-slide-alert'
export default class extends React.Component {
onError = () => {
Alert.showAlert({
message: 'Alarm! Alarm!',
alertType: 'error'
})
}
render () {
return
}
}
```