expo-react-native-toastify
Version:
expo-react-native-toastify allows you to add notifications to your expo react-native app (ios, android, web) with ease.
14 lines (11 loc) • 310 B
JavaScript
import ToastManager from './components/ToastManager'
import Demo from '../demo'
export const Toast = {
info: ToastManager.info,
success: ToastManager.success,
warn: ToastManager.warn,
error: ToastManager.error,
custom: ToastManager.custom
};
export { Demo };
export default ToastManager;