mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 09:09:29 +01:00
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
import { ToastAndroid } from 'react-native'
|
|
|
|
function toast(message: string) {
|
|
ToastAndroid.showWithGravityAndOffset(message, ToastAndroid.SHORT, ToastAndroid.BOTTOM, 0, 180)
|
|
}
|
|
|
|
export default toast
|