import 'dart:io';
import 'package:compdfkit_flutter/compdfkit.dart';
import 'package:flutter/material.dart';
const String DOCUMENT_PATH = 'pdfs/PDF_Document.pdf';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
_init();
}
void _init() async {
ComPDFKit.init('your license key', 'your license secret');
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
body: SafeArea(
child: Center(
child: ElevatedButton(
onPressed: () async {
showDocument(context);
},
child: const Text(
'Open File',
style: TextStyle(color: Colors.white),
)),
))),
);
}
void showDocument(BuildContext context) async {
final bytes = await DefaultAssetBundle.of(context).load(DOCUMENT_PATH);
final list = bytes.buffer.asUint8List();
final tempDir = await ComPDFKit.getTemporaryDirectory();
final tempDocumentPath = '${tempDir.path}/$DOCUMENT_PATH';
final file = await File(tempDocumentPath).create(recursive: true);
file.writeAsBytesSync(list);
ComPDFKit.openDocument(tempDocumentPath);
}
}
Flutter PDF 查看器
ComPDFKit PDF 查看器庫為 Flutter 提供靈活的 PDF 查看功能。它具有直觀的界面,方便文檔導航,提供無縫的用戶體驗,包括頁面顯示模式、PDF 導航、顯示主題、縮放、文本搜索、文本重排等功能。
Flutter PDF 註解 SDK
將添加、編輯、導入、導出和合併 PDF 文件中的註解功能集成到您的 Flutter 應用中。這個強大的註解庫允許用戶通過多種註解類型進行協作,如筆記、鏈接、自由文本、形狀、標記、印章、鉛筆(墨水)、彈出、聲音等。
Flutter 文檔編輯 SDK
ComPDFKit Flutter 文檔編輯庫提供完整的文檔編輯能力,允許用戶在應用內直接編輯文檔。通過此 SDK,用戶可以添加、拆分、合併、提取、重新排列、刪除、旋轉和複製頁面。
我通過谷歌搜索並查看了 ComPDFKit 官方網站上的信息,他們的 Flutter 表單包完美匹配我們的發票管理程序。
Ahmad Kamel
IT 支持專家,保險