Files
JKVideo/utils/toast.ts
Developer 6e0dc2729c 本项目已收到哔哩哔哩(bilibili)律师函,要求停止对 B 站 API 的调用及相关仿制行为。
为尊重知识产权及相关法律法规,本仓库即日起停止后续维护与更新,不再接受新的 Issue 和 Pull Request。

现有代码仅作学习参考保留,请勿将本项目用于任何商业或违法用途。

感谢所有支持过本项目的朋友。
2026-05-12 21:29:45 +08:00

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