This is a very odd issue as the control was working fine until last month.
In my application, if I add a LinearContentPointer element, the UI freezes in both release and debug.
I'm using .NET 7, Visual Studio 2022 Enterprise 17.6.5. Doesn't seem to matter the iOS version.
Syncfusion.Maui.Gauges 22.1.34. I tried 22.2.5, but the issue persists. Nothing in the Output seems to point to any issues. The UI just seems to freeze. Maybe a deadlock somewhere?
Note that this only freezes when I use
LinearContentPointer.Content.
For example, this freezes:
<gauge:LinearContentPointer Value="80">
<gauge:LinearContentPointer.Content>
<Image
HeightRequest="20"
Source="pin.png"
WidthRequest="20" />
</gauge:LinearContentPointer.Content>
</gauge:LinearContentPointer>
While this does not freeze the app:
<gauge:LinearShapePointer Value="80" />