Function

WindowSize

A [DeviceConfigurationOverride] that overrides the window size for the contained content.

DeviceConfigurationOverrideWindowSizeSample

@Composable
fun DeviceConfigurationOverrideWindowSizeSample() {
    DeviceConfigurationOverride(DeviceConfigurationOverride.WindowSize(DpSize(1280.dp, 800.dp))) {
        MyScreen() // will be rendered with an apparent window size of 1280dp by 800dp without
        // clipping
    }
}