bsky-app/src/view/com/util/Toast.tsx
2022-11-28 10:38:16 -06:00

11 lines
232 B
TypeScript

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,
})
}