An open API service indexing awesome lists of open source software.

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

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
}
}
```