blob: 197f474228137923085f87bb15f28d5901135bb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import Toast from 'react-native-root-toast'
export function show(message: string) {
Toast.show(message, {
duration: Toast.durations.LONG,
position: 50,
shadow: true,
animation: true,
hideOnPress: true,
})
}
|