Files
drip/components/helpers/general.js
2022-08-23 12:58:32 +02:00

8 lines
180 B
JavaScript

import Toast from 'react-native-simple-toast'
export const showToast = (text) =>
Toast.show(text, Toast.SHORT, [
'RCTModalHostViewController',
'UIAlertController',
])