Любое решение? Заранее спасибо! < /P>
Код: Выделить всё
Dialog(onDismissRequest = onDismiss, DialogProperties(
usePlatformDefaultWidth = false,
),) {
Box(
modifier = Modifier
.fillMaxSize()
.background(Color.White) // Background color for the dialog
) {
Column(
modifier = Modifier
.fillMaxSize()
.padding(
// Use insets to handle the status bar
top = WindowInsets.statusBars.asPaddingValues().calculateTopPadding()
),
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally
) {
Text("Your Dialog Content")
Button(onClick = onDismiss) {
Text("Dismiss")
}
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/791 ... fullscreen