react-native-fast-pdf-viewer
v0.2.0
Published
Support For Fabic PDF
Readme
react-native-fast-pdf-viewer
Support For Fabic PDF
Example
Installation
npm install react-native-fast-pdf-viewerUsage
import { View, StyleSheet } from 'react-native';
import { FastPdfViewer } from 'react-native-fast-pdf-viewer';
export default function App() {
return (
<View style={styles.container}>
<FastPdfViewer uri="https://PDF_URI.pdf" style={styles.box} />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
box: {
width: '100%',
height: '100%',
},
});
