UNPKG

@equinor/mad-toast

Version:

Toast package built on top of `react-native-toast-message`

8 lines (6 loc) 175 B
// src/utils/getMaxToastWidth.ts import { Platform } from "react-native"; var getMaxToastWidth = () => Platform.OS === "web" ? "90vw" : "90%"; export { getMaxToastWidth };