We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2afc284 commit 85b65a9Copy full SHA for 85b65a9
app/src/commonMain/kotlin/de/westnordost/streetcomplete/screens/main/messages/UnreadMessagesDialog.kt
@@ -110,7 +110,9 @@ private fun Envelope(
110
) {
111
Image(painterResource(Res.drawable.mail_back), null)
112
if (opening > 0.5f) Image(openMailPainter(progress = opening), null)
113
- content()
+ Box(Modifier.align(Alignment.BottomCenter).padding(bottom = 112.dp)) {
114
+ content()
115
+ }
116
Image(painterResource(Res.drawable.mail_front), null)
117
if (opening <= 0.5f) Image(openMailPainter(progress = opening), null)
118
}
0 commit comments