I am trying to make an Image have a fixed width but the height should be auto. More like a responsive image.
Here is the code I wrote but it is not working
Image.file(
imageFile!,
height: auto,
width: 200,
),
I am trying to make an Image have a fixed width but the height should be auto. More like a responsive image.
Here is the code I wrote but it is not working
Image.file(
imageFile!,
height: auto,
width: 200,
),
2
Answers
Just don’t provide height and leave it like this:
Flutter will automatically adjust the height for you
i suggest the next:
Don’t impose any constraints on height, so it’s freely changes its height while having a fixed width.
The height will depend on the main dimensions of the image.