Skip to content

Commit 441e1a3

Browse files
author
Renan Araujo
committed
pub version
1 parent 7b0cb21 commit 441e1a3

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

lib/photo_view.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ class PhotoViewInline extends StatefulWidget {
266266
this.gaplessPlayback = false,
267267
this.heroTag,
268268
this.scaleStateChangedCallback,
269-
270269
}) : super(key: key);
271270

272271
final ImageProvider imageProvider;

lib/src/photo_view_computed_scale.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class PhotoViewComputedScale {
33

44
final String _value;
55
final double multiplier;
6-
6+
77
@override
88
String toString() => 'Enum.$_value';
99

lib/src/photo_view_scale_boundaries.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ScaleBoundaries {
4848
double computeInitialScale() {
4949
if (_initialScale == PhotoViewComputedScale.contained) {
5050
return scaleForContained(size: size, imageInfo: imageInfo) *
51-
(_initialScale as PhotoViewComputedScale) // ignore: avoid_as
51+
(_initialScale as PhotoViewComputedScale) // ignore: avoid_as
5252
.multiplier;
5353
}
5454
if (_initialScale == PhotoViewComputedScale.covered) {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: photo_view
22
description: A simple zoomable image widget for Flutter.
3-
version: 0.0.10
3+
version: 0.0.11
44
author: Renan C. Araújo <[email protected]>
55
homepage: https://github.com/renancaraujo/photo_view
66

0 commit comments

Comments
 (0)