Write a native formatted string using html string
- Install the Xamarin.Forms.HtmlLabel package
Install-Package Xamarin.Forms.HtmlLabel -Version 0.0.1-pre
- Use the HtmlLabel on xaml
<HtmlLabel Text={Binding MyHtmltext}/>
- Bind to html text
public class MyViewModel : BaseviewModel
{
public string MyHtmltext => "<span>This is a <b>formmated text</b><br/>with <i>multilines<i></span>"
}