More fixes

This commit is contained in:
2026-01-17 05:22:37 +00:00
parent f62d4aa5f2
commit 7d2ac327a3
58 changed files with 754 additions and 666 deletions

View File

@@ -940,7 +940,7 @@ public class SkiaButton : SkiaView, IButtonController
#region Measurement
protected override SKSize MeasureOverride(SKSize availableSize)
protected override Size MeasureOverride(Size availableSize)
{
var padding = Padding;
float paddingH = (float)(padding.Left + padding.Right);
@@ -1037,7 +1037,7 @@ public class SkiaButton : SkiaView, IButtonController
height = (float)HeightRequest;
}
return new SKSize(Math.Max(width, 44f), Math.Max(height, 30f));
return new Size(Math.Max(width, 44f), Math.Max(height, 30f));
}
#endregion