Closed ngocdaothanh closed 5 years ago
It's because the style hasn't been set yet:
public bool IsStroke {
get => Style != SKPaintStyle.Fill;
set => Style = value ? SKPaintStyle.Stroke : SKPaintStyle.Fill;
}
https://github.com/mono/SkiaSharp/blob/master/binding/Binding/SKPaint.cs
It doesn't look the same as the output of CSkiaSwift. In CSkiaSwift, there's additional API to set stroke to true/false.