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

@@ -520,10 +520,10 @@ public class SkiaStepper : SkiaView
#region Layout
protected override SKSize MeasureOverride(SKSize availableSize)
protected override Size MeasureOverride(Size availableSize)
{
var buttonWidth = (float)ButtonWidth;
return new SKSize(buttonWidth * 2 + 1, 32);
var buttonWidth = ButtonWidth;
return new Size(buttonWidth * 2 + 1, 32);
}
#endregion