I am currently evaluating Xamarin Forms as an alternative to our mobile platform oriented HTML web applications.
Our applications often use graphic characters embedded in paragraphs of text. The desired effect is as follows:

Of course, the text should also be able to flow freely around, including all characters. In HTML, this is simply achieved as follows:
<p>Sample text with <img src="sample.jpg"> embedded</p>
How can I achieve the same effect with Xamarin Forms? I already looked at FormattedStrings, which allow you to format Labels sub items, however they do not seem to allow embedding images.
Also note that a solution is required to support iOS, Android, and Windows Phone 8.1 at least.
source share