mupdf02 0.0.1
mupdf02: ^0.0.1 copied to clipboard
基于mupdf的Android端pdf插件,支持简单的文件批注操作.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:mupdf02_example/PageHome.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowMaterialGrid: false,
home: PageHome(),
);
}
}