Function

FontScale

A [DeviceConfigurationOverride] that overrides the font scale for the contained content.

DeviceConfigurationOverrideFontScaleSample

@Composable
fun DeviceConfigurationOverrideFontScaleSample() {
    DeviceConfigurationOverride(DeviceConfigurationOverride.FontScale(1.5f)) {
        MyScreen() // will be rendered with a larger than default font scale
    }
}