rozerro
rozerro

Reputation: 7216

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

Upvotes: 1

Views: 1156

Answers (1)

EverFinal88
EverFinal88

Reputation: 108

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.

Upvotes: 6

Related Questions