Frame completed

This commit is contained in:
2026-01-16 05:31:21 +00:00
parent 538d4bad65
commit 1b1619de06
2 changed files with 7 additions and 9 deletions

View File

@@ -67,11 +67,7 @@ public partial class FrameHandler : ViewHandler<Frame, SkiaFrame>
{
if (frame.BorderColor != null)
{
handler.PlatformView.Stroke = new SKColor(
(byte)(frame.BorderColor.Red * 255),
(byte)(frame.BorderColor.Green * 255),
(byte)(frame.BorderColor.Blue * 255),
(byte)(frame.BorderColor.Alpha * 255));
handler.PlatformView.Stroke = frame.BorderColor;
}
}