UNPKG

react-native-material-elements

Version:

React native material elements is a sophisticated UI library crafted to enhance your React Native development workflow. Designed for simplicity and elegance, nex-ui provides a rich collection of components and utilities to effortlessly create polished mob

13 lines (11 loc) 390 B
import { DeviceEventEmitter } from 'react-native'; import { HIDE_SNACK_BAR_MESSAGE, SHOW_SNACK_BAR_MESSAGE } from './constants'; import { SnackbarProperties } from './Snackbar'; export const snackbar = { show: (config: SnackbarProperties) => { DeviceEventEmitter.emit(SHOW_SNACK_BAR_MESSAGE, config); }, hide: () => { DeviceEventEmitter.emit(HIDE_SNACK_BAR_MESSAGE); }, };