react-native-android-toast-alert
This is demo android native toast package.
Installation
npm install react-native-android-toast-alert
Usage
import { multiply } from 'react-native-android-toast-alert';
const result = await multiply(3, 7);
import { showAlert } from 'react-native-android-toast-alert';
<Button title='Show Alert' onPress={()=>showAlert('Alert','Hello word !')}/>
import { showToast } from 'react-native-android-toast-alert';
<Button title='Show Toast' onPress={()=>showToast('Toast message')}/>
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library