import { Platform } from "react-native"; export const getPDFViewURL = (url) => { if (Platform.OS == "ios") return url; else return `https://docs.google.com/viewer?url=${encodeURI(url)}&embedded=true`; };