react-native-pdf在react-native": "0.71.6使用
时间: 2023-11-20 19:07:16 浏览: 303
在 React Native 版本为 0.71.6 中使用 react-native-pdf 可以按照以下步骤进行:
1. 安装 react-native-pdf:
```
npm install react-native-pdf --save
```
2. 在 iOS 中,使用 CocoaPods 安装依赖:
```
cd ios
pod install
```
3. 在 Android 中,添加以下代码到 `android/app/build.gradle` 中的 `dependencies` 部分:
```
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
```
4. 在需要使用 PDF 组件的地方,引入 `react-native-pdf`:
```
import Pdf from 'react-native-pdf';
```
5. 在组件中使用 `Pdf` 组件:
```
<Pdf
source={{uri:'http://samples.leanpub.com/thereactnativebook-sample.pdf'}}
style={{flex:1}}
/>
```
以上是在 React Native 0.71.6 中使用 react-native-pdf 的基本步骤,你可以根据自己的需求调整代码。
阅读全文