'Using photo_view package to fit image like BoxFit.cover
A basic usage as it, but in this case it is not fitted to screen borders. Is it possible to display it with a behaviour of BoxFit.cover ? A double tap make it fitted to the screen borders. Is it possible to display it this way initially?
PhotoView(
imageProvider: NetworkImage(url),
)
Solution 1:[1]
I recently had the same problem here, but I found a solution. Although the answer is late by a couple months but here it is.
initialScale: PhotoViewComputedScale.covered,
Just add this line inside your PhotoView
, it shows the same behaviour as BoxFit.cover
.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Roslan Amir |