grepLines
grepLines

Reputation: 2558

How to get scaled image size Flutter?

I am able to get the actual image height from here However, I am looking for a way to get the actual height of the image that has been scaled on different device screens.

Upvotes: 0

Views: 781

Answers (1)

Rémi Rousselet
Rémi Rousselet

Reputation: 276881

You can use MediaQuery.of(context).devicePixelRatio combined with the size in DP of your image container.

Upvotes: 1

Related Questions