Ejemplo n.º 1
0
        public static SKSize MeasureText(string text, ControlStyle style)
        {
            var bounds = SKRect.Empty;

            using var paint = new SKPaint { Typeface = style.GetFont(), TextSize = style.GetFontSize() };

            paint.MeasureText(text, ref bounds);
            return(bounds.Size);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets the computed font.
 /// </summary>
 public SKTypeface GetFont() => Font ?? _parent?.GetFont() ?? Theme.UIFont;
Ejemplo n.º 3
0
 public SKTypeface GetFont() => Font ?? _parent.GetFont();