Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 752 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 752 Bytes

Xamarin.Forms.HtmlLabel

Write a native formatted string using html string

NuGet NuGet

Getting started

  • 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>"
}