We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9252761 commit 62ed49eCopy full SHA for 62ed49e
src/Uno.UI/UI/Xaml/UIElement.Android.cs
@@ -172,7 +172,9 @@ partial void ApplyNativeClip(Rect rect)
172
{
173
_previousClip = rect;
174
175
+#pragma warning disable CS0618 // deprecated members
176
ViewCompat.SetClipBounds(this, null);
177
+#pragma warning restore CS0618 // deprecated members
178
}
179
180
return;
@@ -187,7 +189,9 @@ partial void ApplyNativeClip(Rect rect)
187
189
physicalRect.Height += fra.Height;
188
190
191
192
193
ViewCompat.SetClipBounds(this, physicalRect);
194
195
196
if (FeatureConfiguration.UIElement.UseLegacyClipping)
197
0 commit comments