Reputation: 2558
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
Reputation: 276881
You can use MediaQuery.of(context).devicePixelRatio
combined with the size in DP of your image container.
Upvotes: 1