I need a Android.Views.SurfaceView component to draw on.
I placed a Microsoft.Maui.Controls.BoxView component then tried to reach it's platform object using
var platformHandler = compname.Handler.PlatformView; but I receive Android.Views.View which doesn't have/relate a Android.Views.Surface object like I need.
Is there any component with a SurfaceView or Surface 'related' object I can use?
Maybe a way to extract a Surface object from the Android.Views.View?