File: Primitives\FontWeight.cs | Web Access |
Project: src\src\Core\src\Core.csproj (Microsoft.Maui) |
using System; namespace Microsoft.Maui { public enum FontWeight { Regular = 400, Thin = 100, Ultralight = 200, Light = 300, Medium = 500, Semibold = 600, Bold = 700, Heavy = 800, Black = 900, } } |