PDF缩略图
PDF文件的缩略图查看器
安装?
❗ 要开始使用 PDF 缩略图,您必须在机器上安装 Flutter SDK。
将 pdf_thumbnail 添加到您的 pubspec.yaml 中
dependencies:
pdf_thumbnail:
安装它
flutter packages get
示例 ✍️
return Stack(
children: [
SizedBox(
height: MediaQuery.of(context).size.height,
width: MediaQuery.of(context).size.width,
child: PdfViewer(
filePath: snapshot.data!.path,
),
),
if (showThumbnail)
Positioned(
bottom: 0,
width: MediaQuery.of(context).size.width,
// Here's the thumbnail widget.
child: PdfThumbnail.fromFile(snapshot.data!.path),
),
],
);
演示
路线图 ?️
- 颜色、装饰等自定义
- onTap 回调和页码
- 不同的布局和滚动轴
- 缓存
