Open T0M0F opened 4 years ago
if you want to use other widget to display images, such as CachedNetworkImage:
Markdown(
// ...
imageBuilder: (Uri uri) {
return CachedNetworkImage(
imageUrl: uri.toString(),
)
}
)
About imageDirectory, See #20
Is the imagedirectory attribute needed to show images from locale file storage? Or is it only needed when using relative paths with the image tag?
Hi @T0M0F I agree documentation images could be improved
How do I use the
imageBuilder
andimageDirectory
attributes? And also what is the correct syntax for integrating images?