Droidcon Berlin data in Confetti now (thanks to <@...
# confetti
j
Droidcon Berlin data in Confetti now (thanks to @mbonnin). Also reverted top app bar back to
CenterAlignedTopAppBar
(fyi @Marcello Galhardo 😃 ).
🙌 3
Example with longer title
m
Thaaaank you! ❤️
Can we center the DC Berlin name?
I have an idea to improve this UI, will try to raise a PR next days, hehe.
👍 1
j
Can we center the DC Berlin name?
Yeah, had meant to look at that as well....so, turns out that
fillMaxWidth
below was the culprit....removed that and it centers
Copy code
CenterAlignedTopAppBar(
                    title = {
                        Text(
                            modifier = Modifier
                                .fillMaxWidth()
                                .padding(horizontal = 8.dp),
👍 1