From 3bb6494b9f84deb621168eb7a512f717d1bac963 Mon Sep 17 00:00:00 2001 From: jay Date: Fri, 2 Feb 2024 15:25:51 -0500 Subject: [PATCH 1/2] fix: [Catalyst] Ensure LottieVisualSource is transparent --- src/AddIns/Uno.UI.Lottie/LottieVisualSource.Skottie.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/AddIns/Uno.UI.Lottie/LottieVisualSource.Skottie.cs b/src/AddIns/Uno.UI.Lottie/LottieVisualSource.Skottie.cs index 82857e5caff1..35693730114a 100644 --- a/src/AddIns/Uno.UI.Lottie/LottieVisualSource.Skottie.cs +++ b/src/AddIns/Uno.UI.Lottie/LottieVisualSource.Skottie.cs @@ -214,6 +214,10 @@ private UIElement BuildRenderSurface() #else _softwareCanvas = new(); _softwareCanvas.PaintSurface += OnSoftwareCanvas_PaintSurface; + +#if __IOS__ + _softwareCanvas.Opaque = false; +#endif return _softwareCanvas; #endif } From 57b519baa0e7bc33b7e0aee3305d0cda7338ce15 Mon Sep 17 00:00:00 2001 From: jay Date: Fri, 2 Feb 2024 15:27:25 -0500 Subject: [PATCH 2/2] fix: Adjust invariant mode for catalyst samples app --- .../SamplesApp.netcoremobile/SamplesApp.netcoremobile.csproj | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SamplesApp/SamplesApp.netcoremobile/SamplesApp.netcoremobile.csproj b/src/SamplesApp/SamplesApp.netcoremobile/SamplesApp.netcoremobile.csproj index 45a35f531756..7e9dca5c87ca 100644 --- a/src/SamplesApp/SamplesApp.netcoremobile/SamplesApp.netcoremobile.csproj +++ b/src/SamplesApp/SamplesApp.netcoremobile/SamplesApp.netcoremobile.csproj @@ -99,6 +99,9 @@ $(MtouchExtraArgs) --marshal-objectivec-exceptions:disable + + + false