I want to use a syncfusion check box in my xamarin.forms project and the text property should contain a hyperlink on a single word block which should be underlined like this:
[ ] By continuing to register an account you agree the "terms and conditions"
The word block "terms and conditions" should be underlined with a hyperlink.
The XAML of the check box looks like this:
<SfCheckBox x:Name="checkBoxIsAgreed" Text="text here"/>
How can I achieve this with only a text property which is a string?
Thanks in advance!