https://kotlinlang.org logo
Title
m

Michael Paus

04/03/2023, 8:11 AM
I think I have stumbled again over a regression in Compose. Going from 1.4.0-alpha01-dev984 to 985 my AlertDialogs changed from looking like this to
The code is as simple as this:
AlertDialog(
                onDismissRequest = { model.clearMessages() },
                title = { Text(title, color = primaryDarkColor) },
                text  = { Text(text,  color = primaryColor) },
                buttons = {},
                modifier = Modifier.width(600.dp).border(1.dp, primaryDarkColor)
            )
Has anybody else seen something like this?
a

Alexander Maryanovsky

04/03/2023, 9:53 AM
Looking into it
Should be fixed in the next dev release.