Using photo_view package to fit image like BoxFit.cover

918 views Asked by At

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),
)
1

There are 1 answers

1
EverFinal88 On BEST ANSWER

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.