When referencing the HyperText.Avalonia Nuget package, the Hyperlink cannot be seen on the window. It works fine if the HyperText.Avalonia source project is referenced instead.
I've created Avalonia controls myself. When the first control I was developing could not been seen on the Window, I found out it was because a Style had not been specified. In that case, I specified the Style within the control class by overriding StyleKeyOverride. Hyperlink instead relies on HyperLinkStyle being added to the application's Styles, which I did.
So the problem may have something to do with HyperLinkStyle in the Nuget package.
When referencing the HyperText.Avalonia Nuget package, the
Hyperlinkcannot be seen on the window. It works fine if the HyperText.Avalonia source project is referenced instead.I've created Avalonia controls myself. When the first control I was developing could not been seen on the Window, I found out it was because a
Stylehad not been specified. In that case, I specified theStylewithin the control class by overridingStyleKeyOverride.Hyperlinkinstead relies onHyperLinkStylebeing added to the application'sStyles, which I did.So the problem may have something to do with
HyperLinkStylein the Nuget package.