After a lot of work, finally the component now supports multiple platforms using the Firemonkey framework (FMX).
DzHTMLText is a component for Delphi and Lazarus that allows you to format a Label with HTML notation.
You can now compile for Windows, Linux, Android, iOS and MacOS.
Download it now, it’s free: digao-dalpiaz/DzHTMLText: Delphi and Lazarus HTML Label component (github.com)

Here you can see a lot of DzHTMLText functionalities:

Please, leave your comment about this component. If you like it, consider buy me a coffee using Ko-fi button on right widget. Thanks.


dzhtml 5.2
AutoWidth=off, Align=alClient
Onform resize that results dzHtml.Width Crash, out of resources.
Hello,
I’ll take a look.
I tried to reproduce the issue here using DzHTMLText with Align = alClient, but I couldn’t.
Please, open an Issue on GitHub commenting the steps to reproduce the issue.
Thanks
You component can justify text?
No, at the moment this function does not exist in the component. Please make a request on GitHub.
Available now in version 6.12 !
Hi, I have installed version 6.12 but on android 64 there is a bug in file Vcl.DHTokenEngine at line 1847.
Line : if Text[CurPos]=#10 then Inc(CurPos); //when #13#10 sequence.
If CurPos > Len => Text[CurPos] has range check error.
I have modifed source so :
if CurPos < Len
then if Text[CurPos]=#10
then Inc(CurPos); //when #13#10 sequence
Bye.
Fixed in version 6.13.
Thanks!