Skip to content

Commit 2b145f3

Browse files
author
Tiago Ribeiro
committed
Version 1.0.7
2 parents 0da7f8f + bbff4dc commit 2b145f3

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

example/pubspec.lock

+14
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@ packages:
102102
url: "https://pub.dartlang.org"
103103
source: hosted
104104
version: "3.1.3"
105+
infinite_listview:
106+
dependency: transitive
107+
description:
108+
name: infinite_listview
109+
url: "https://pub.dartlang.org"
110+
source: hosted
111+
version: "1.0.0"
105112
matcher:
106113
dependency: transitive
107114
description:
@@ -116,6 +123,13 @@ packages:
116123
url: "https://pub.dartlang.org"
117124
source: hosted
118125
version: "1.1.6"
126+
numberpicker:
127+
dependency: transitive
128+
description:
129+
name: numberpicker
130+
url: "https://pub.dartlang.org"
131+
source: hosted
132+
version: "1.0.0"
119133
path:
120134
dependency: transitive
121135
description:

lib/src/viewer.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class _PDFViewerState extends State<PDFViewer> {
6565
_oldPage = _pageNumber;
6666
_page = await widget.document.get(page: _pageNumber);
6767
}
68-
if (this.mounted) {
68+
if(this.mounted) {
6969
setState(() => _isLoading = false);
7070
}
7171
}

pubspec.lock

+14
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,27 @@ packages:
7676
url: "https://pub.dartlang.org"
7777
source: hosted
7878
version: "3.1.3"
79+
infinite_listview:
80+
dependency: transitive
81+
description:
82+
name: infinite_listview
83+
url: "https://pub.dartlang.org"
84+
source: hosted
85+
version: "1.0.0"
7986
meta:
8087
dependency: transitive
8188
description:
8289
name: meta
8390
url: "https://pub.dartlang.org"
8491
source: hosted
8592
version: "1.1.6"
93+
numberpicker:
94+
dependency: "direct main"
95+
description:
96+
name: numberpicker
97+
url: "https://pub.dartlang.org"
98+
source: hosted
99+
version: "1.0.0"
86100
path:
87101
dependency: transitive
88102
description:

pubspec.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ dependencies:
1313
flutter_cache_manager: ^1.0.0
1414
path_provider: ^1.1.0
1515
rxdart: ^0.21.0
16+
numberpicker: ^1.0.0
1617
flutter_advanced_networkimage: ^0.5.0
1718

1819
flutter:

0 commit comments

Comments
 (0)