8 lines
213 B
JavaScript
8 lines
213 B
JavaScript
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`;
|
|
};
|