8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import { Platform } from "react-native";
|
|
|
|
export const getPDFViewURL = (url:string) => {
|
|
if (Platform.OS == "ios") return url;
|
|
else
|
|
return `https://mozilla.github.io/pdf.js/web/viewer.html?file=${encodeURI(url)}`;
|
|
};
|