flutter_filereader 3.0.0 copy "flutter_filereader: ^3.0.0" to clipboard
flutter_filereader: ^3.0.0 copied to clipboard

A local file view widget,Support a variety of file types, such as Doc Eexcl PPT TXT and so on,Android is implemented by Tencent X5,iOS is implemented by WKWebView

Flutter FileReader #

pub package

A local file view widget,Support a variety of file types, such as Doc Eexcl PPT TXT and so on,Android is implemented by Tencent X5(Not Support GooglePlay),iOS is implemented by WKWebView

Depend on it #

Add this to your package's pubspec.yaml file:

1.9.1

dependencies:
  flutter_filereader: ^1.0.0
copied to clipboard

1.12.x

dependencies:
  flutter_filereader: ^2.2.0
copied to clipboard

=2.0.0

dependencies:
  flutter_filereader: 3.0.0
copied to clipboard

Support File Type #

  • IOS docx,doc,xlsx,xls,pptx,ppt,pdf,txt,jpg,jpeg,png
  • Android docx,doc,xlsx,xls,pptx,ppt,pdf,txt

Usage #

iOS #

Make sure you add the following key to Info.plist for iOS

<key>io.flutter.embedded_views_preview</key><true/>
copied to clipboard

Example #

import 'package:flutter/material.dart';
import 'package:flutter_filereader/flutter_filereader.dart';

class FileReaderPage extends StatefulWidget {
  final String filePath;

  FileReaderPage({Key: Key, this.filePath});

  @override
  _FileReaderPageState createState() => _FileReaderPageState();
}

class _FileReaderPageState extends State<FileReaderPage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text("doc"),
      ),
      body: FileReaderView(
        filePath: widget.filePath,
      ),
    );
  }
}
copied to clipboard

注意事项 #

  1. Not Support GooglePlay
  2. 不支持在Android模拟器上运行
  3. txt文档如果显示乱码,请将txt文档编码改成gbk
87
likes
120
points
150
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.09 - 2025.03.24

A local file view widget,Support a variety of file types, such as Doc Eexcl PPT TXT and so on,Android is implemented by Tencent X5,iOS is implemented by WKWebView

Repository (GitHub)

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on flutter_filereader