'Resize Markdown image in flutter

I need to resize a local image from the assets folder in my markdown file.

I currently have this image that does display in my .md file.

enter image description here

I need to resize the image to make it a bit smaller.

Is it possible with the current package?



Solution 1:[1]

You can use inline HTML <img/> with providing size.

<img src = "assets/images/image01.png" width="x" height="x" />

Or

[<img src ="assets/images/image01.png" width="100" height="x"/> ](assets/images/image01.png)

More and ref: Changing image size in Markdown

Solution 2:[2]

<img src="drawing.jpg" alt="drawing" width="200"/>

This the github discussion on this, https://gist.github.com/uupaa/f77d2bcf4dc7a294d109

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Yeasin Sheikh
Solution 2 Dharman