问题很简单,我想使用Flutter通过默认应用程序打开任何pdf或doc文件。
想一个与我的pdf资产相关的凸起按钮,当用户按下它时,pdf将通过Acrobat reader等打开。我不想使用任何web_view。
是否支持Flutter?
答案 0 :(得分:4)
您可以通过在网络浏览器中打开google文档来实现此目的:
在pubspec.yaml中,您需要:
url_launcher: ^0.4.2+5
包括:
import 'package:flutter/src/gestures/tap.dart';
import 'package:url_launcher/url_launcher.dart';
代码段:
new RichText(
text: new LinkTextSpan(
url: 'http://docs.google.com/viewer?url=http://www.pdf995.com/samples/pdf.pdf',
text: 'Show My Pdf'),
),
LinkTextSpan类:
class LinkTextSpan extends TextSpan {
LinkTextSpan({TextStyle style, String url, String text})
: super(
style: style,
text: text ?? url,
recognizer: new TapGestureRecognizer()
..onTap = () {
launch(url);
});
}
答案 1 :(得分:2)
open_file软件包是一种很好而简单的方法,它使您可以打开具有给定路径的文件。它支持多种不同的文件类型:
import 'package:open_file/open_file.dart';
OpenFile.open("/sdcard/example.pdf");
答案 2 :(得分:1)
您可以使用我的flutter库。这是适用于iOS和Android的PDF查看器。这是GIT存储库:https://github.com/albo1337/flutter_full_pdf_viewer
最好的问候 nullpointer / albo
答案 3 :(得分:0)
您可以为此使用url_launcher软件包。只需将文档的path
作为参数传递给launch()方法即可。
答案 4 :(得分:0)
您可以使用[flutter_full_pdf_viewer 1.0.6]依赖性
答案 5 :(得分:0)
无需下载文件,请使用软件包从URL打开: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';
}
}
答案 6 :(得分:0)
class EmployeeViewModel {
EmployeeModel _employeeModel = EmployeeModel();
String fname;
void downloadFile(BuildContext context, String fileUrl, String fileName, ProgressListener listener) async {
String _filePath = '';
if (Platform.isAndroid) {
String _directory = await ExtStorage.getExternalStoragePublicDirectory(ExtStorage.DIRECTORY_DOWNLOADS);
print(_directory);
_filePath = '$_directory/$fileName';
//todo getting file name here
print("file name" + fileName);
fname = fileName;
print("file fname" + fname);
//APIKey.FILE_NAME: fileName;
} else if (Platform.isIOS) {
Directory _directory = await getApplicationDocumentsDirectory();
_filePath = '${_directory.path}/$fileName';
print("file name" + fileName);
//log(fileName);
debugPrint(_directory.path);
print("directory path" + _directory.path);
}
var response = await Dio().downloadUri(Uri().resolve(fileUrl), _filePath);
if (response.statusCode == 200) {
listener.isProcessing(false);
AlertMessageDialog(context, UtilString.downloadCompleted, UtilString.downloadCompletedMessage, UtilString.open, AlertMessageDialogActionHandler());
} else {
listener.isProcessing(false);
UtilAction.showSnackBar(context, response.statusMessage);
}
} class AlertMessageDialogActionHandler implements AlertMessageDialogListener {
@override
Future<void> onPositiveButtonClick() async {
String _filePath = '';
String fileName;
String _directory = await ExtStorage.getExternalStoragePublicDirectory(ExtStorage.DIRECTORY_DOWNLOADS);
//todo geeting right directory path here
print("directory" + _directory);
_filePath = '$_directory/$fileName';
print("file path" + _filePath);
// print("filename" + fileName);
OpenFile.open("/storage/emulated/0/Download/GA55-Estimated-SHRIGOPAL-VERMA-2020-2021.pdf"); }}