How to download a file with React Native?

前端 未结 3 1321
花落未央
花落未央 2020-12-02 17:32

I am building an app with React Native, for Android and iOS. I am trying to let the user download a PDF file when clicking on a button.

  • react-native-file-downl
3条回答
  •  失恋的感觉
    2020-12-02 17:53

    I had the same issue, got it working using Expo WebBrowser Module

    // install module 
    npm install react-native-webview
    
    // import the module
    import * as WebBrowser from 'expo-web-browser';
    
    // then in your function you can call this function
    await WebBrowser.openBrowserAsync(file_ur);
    

    it will open preview of the file and then user can download using share button.

提交回复
热议问题