Releases: bluefireteam/photo_view
Releases · bluefireteam/photo_view
0.0.6
Added
- Support to Dart 2 #18, #21
- Analyzer options for linting #16, #21
- Documentation in pub dartdocs
heroTag
arguments toPhotoView
andPhotoViewInline
constructors for usage along withHero animations
. #15, #19, #22
// screen1
...
Hero(
tag: "someTag",
child: Image.asset(
"assets/large-image.jpg",
width: 150.0
),
)
// screen2
...
child: PhotoView(
imageProvider: AssetImage("assets/large-image.jpg"),
heroTag: "someTag",
)
Fixed
- Extraneous "Bad state Exception" #14
0.0.5
Added
PhotoViewInlineClass
for inline usage (#11)- ScaleBoundaries multiplying capability:
minScale: PhotoViewScaleBoundary.contained * 0.8,
maxScale: PhotoViewScaleBoundary.covered * 1.1,
Fixed
MemoryProvider
image flickering issue (#12) - Thanks to @SocratesDz
0.0.4
0.0.3
Added
- Background color option
- Clamp scale options with animation