Skip to main content
.font(style?: TextStyle | number | CustomFont): Component;

Parameters

style
TextStyle | number | CustomFont
The font specification. Can be a predefined text style, a numeric font size, or a custom font configuration.

Support

Usage

System font sizes

Text("Large title text")
    .font("largeTitle")

Custom font size

Text("Custom sized text")
    .font(18)

System text styles

Text("Body text")
    .font("body")