In Dart/Flutter, I have a String as such:
String myString = "Hello there here is the form: path/to/asset/image"
Is there any way I can have the String show that asset image listed when it is rendered within a widget?
I know WebView exists and that I may be able to have that image as a URL instead of an asset image, which should show it inline; however, only a handful of these Strings will have images attached so I'm not sure if that's the best route.
Further, what if I had two image paths within one String?
I've searched and possibly found WebView as a solution or maybe the package flutter_html, but I'm not seeing any other solutions for what I'm asking.
Any other approaches you can toss my way? Thanks.