Preview PDF files in React-Native application
In my react native application, I want to add a functionality to preview the PDF files. For that, I have an API url. When I open this url in the browser on desktop , it previews the Pdf file, but when I open this file in browser on my mobile, it starts downloading the file.
How to embedd a pdf document on your react native for users to download
import { StyleSheet, Dimensions, Button, View, Text, PermissionsAndroid } from ‘react-native’
import React from ‘react’
import RNFetchBlob from ‘rn-fetch-blob’;
import Pdf from ‘react-native-pdf’;