How to open and PDF or word document in the [Flutter]

前端 未结 6 1178
别那么骄傲
别那么骄傲 2020-12-16 13:01

Question is simple, I would like to open any pdf or doc file via default App with using Flutter.

Think a Raised button that related my pdf asset, when user press it

6条回答
  •  自闭症患者
    2020-12-16 13:22

    without downloading file,open from URL using the package : url_launcher

    import 'package:url_launcher/url_launcher.dart';
    
    _launchURL() async {
      const url = 'https://flutter.dev/exapmle.pdf';
      if (await canLaunch(url)) {
        await launch(url);
      } else {
        throw 'Could not launch $url';
      }
    }
    

提交回复
热议问题