mirror of
https://gh-proxy.org/https://github.com/tiajinsha/JKVideo
synced 2026-07-07 23:18:38 +08:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
|
|
import { ToastAndroid, Platform, Alert } from "react-native";
|
||
|
|
|
||
|
|
export function toast(msg: string) {
|
||
|
|
if (Platform.OS === "android") {
|
||
|
|
ToastAndroid.show(msg, ToastAndroid.SHORT);
|
||
|
|
} else {
|
||
|
|
Alert.alert("", msg);
|
||
|
|
}
|
||
|
|
}
|