|
|
|
@ -14,16 +14,18 @@ class PDFScreen extends StatefulWidget {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class _PDFScreenState extends State<PDFScreen> with WidgetsBindingObserver { |
|
|
|
|
final Completer<PDFViewController> _controller = Completer<PDFViewController>(); |
|
|
|
|
final Completer<PDFViewController> _controller = |
|
|
|
|
Completer<PDFViewController>(); |
|
|
|
|
int pages = 0; |
|
|
|
|
int currentPage = 0; |
|
|
|
|
int pageTotal =1; |
|
|
|
|
int pageTotal = 0; |
|
|
|
|
bool isReady = false; |
|
|
|
|
String errorMessage = ''; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Widget build(BuildContext context) { |
|
|
|
|
return widget.inlet == 1 ?Material( |
|
|
|
|
return widget.inlet == 1 |
|
|
|
|
? Material( |
|
|
|
|
type: MaterialType.transparency, |
|
|
|
|
child: Stack( |
|
|
|
|
children: <Widget>[ |
|
|
|
@ -42,8 +44,8 @@ class _PDFScreenState extends State<PDFScreen> with WidgetsBindingObserver {
|
|
|
|
|
pageSnap: true, |
|
|
|
|
defaultPage: currentPage, |
|
|
|
|
fitPolicy: FitPolicy.BOTH, |
|
|
|
|
preventLinkNavigation: |
|
|
|
|
false, // if set to true the link is handled in flutter |
|
|
|
|
preventLinkNavigation: false, |
|
|
|
|
// if set to true the link is handled in flutter |
|
|
|
|
onRender: (_pages) { |
|
|
|
|
setState(() { |
|
|
|
|
pages = _pages; |
|
|
|
@ -96,12 +98,14 @@ class _PDFScreenState extends State<PDFScreen> with WidgetsBindingObserver {
|
|
|
|
|
width: MediaQuery.of(context).size.width, |
|
|
|
|
bottom: 45, |
|
|
|
|
child: Center( |
|
|
|
|
child: Text("${currentPage}/${pageTotal}",style: TextStyle(color: Colors.white,fontSize: 16)), |
|
|
|
|
child: Text("${currentPage}/${pageTotal}", |
|
|
|
|
style: TextStyle(color: Colors.white, fontSize: 16)), |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
], |
|
|
|
|
), |
|
|
|
|
):Scaffold( |
|
|
|
|
) |
|
|
|
|
: Scaffold( |
|
|
|
|
body: Stack( |
|
|
|
|
children: <Widget>[ |
|
|
|
|
PDFView( |
|
|
|
@ -113,8 +117,8 @@ class _PDFScreenState extends State<PDFScreen> with WidgetsBindingObserver {
|
|
|
|
|
pageSnap: true, |
|
|
|
|
defaultPage: currentPage, |
|
|
|
|
fitPolicy: FitPolicy.BOTH, |
|
|
|
|
preventLinkNavigation: |
|
|
|
|
false, // if set to true the link is handled in flutter |
|
|
|
|
preventLinkNavigation: false, |
|
|
|
|
// if set to true the link is handled in flutter |
|
|
|
|
onRender: (_pages) { |
|
|
|
|
setState(() { |
|
|
|
|
pages = _pages; |
|
|
|
@ -139,7 +143,8 @@ class _PDFScreenState extends State<PDFScreen> with WidgetsBindingObserver {
|
|
|
|
|
onLinkHandler: (String uri) { |
|
|
|
|
print('goto uri: $uri'); |
|
|
|
|
}, |
|
|
|
|
onPageChanged: (int page, int total) { if(total >0){ |
|
|
|
|
onPageChanged: (int page, int total) { |
|
|
|
|
if (total > 0) { |
|
|
|
|
print('page change: $page/$total'); |
|
|
|
|
setState(() { |
|
|
|
|
currentPage = page + 1; |
|
|
|
@ -164,14 +169,20 @@ class _PDFScreenState extends State<PDFScreen> with WidgetsBindingObserver {
|
|
|
|
|
bottom: 45, |
|
|
|
|
width: MediaQuery.of(context).size.width, |
|
|
|
|
child: Center( |
|
|
|
|
child: Text("${currentPage+1}/${pageTotal}",style: TextStyle(color: Colors.black,fontSize: 16)), |
|
|
|
|
child: Text("${currentPage}/${pageTotal}", |
|
|
|
|
style: TextStyle(color: Colors.black, fontSize: 16)), |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
Positioned(//右上角关闭按钮 |
|
|
|
|
Positioned( |
|
|
|
|
//右上角关闭按钮 |
|
|
|
|
right: 10, |
|
|
|
|
top: MediaQuery.of(context).padding.top, |
|
|
|
|
child: IconButton( |
|
|
|
|
icon: Icon(Icons.close,size: 30,color: Colors.black,), |
|
|
|
|
icon: Icon( |
|
|
|
|
Icons.close, |
|
|
|
|
size: 30, |
|
|
|
|
color: Colors.black, |
|
|
|
|
), |
|
|
|
|
onPressed: () { |
|
|
|
|
Navigator.of(context).pop(); |
|
|
|
|
}, |
|
|
|
@ -179,8 +190,6 @@ class _PDFScreenState extends State<PDFScreen> with WidgetsBindingObserver {
|
|
|
|
|
), |
|
|
|
|
], |
|
|
|
|
), |
|
|
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |