KotlinLeaner
02/03/2023, 10:24 AMAlertDialog
in Material3
. I can't find the way to override the padding. Is there a way we change the internal padding?AlertDialog(
onDismissRequest = {},
confirmButton = {},
title = {
Column() {
Text(text = "header")
Divider()
}
},
Tgo1014
02/03/2023, 11:22 AMAlertDialog
that takes the content
parameter but then you have to setup everything by yourself. Maybe copying some stuff from the AlertDialog
implementationKotlinLeaner
02/03/2023, 11:22 AM