Function

FontWeightAdjustment

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

DeviceConfigurationOverrideFontWeightAdjustmentSample

@Composable
fun DeviceConfigurationOverrideFontWeightAdjustmentSample() {
    DeviceConfigurationOverride(DeviceConfigurationOverride.FontWeightAdjustment(200)) {
        MyComponent() // will be rendered with adjusted font weight
    }
}