Skip to content
Snippets Groups Projects
Verified Commit 3bef1df5 authored by Torsten Grote's avatar Torsten Grote
Browse files

Don't require a fixes height for mailbox link field

otherwise the error message has no space to be shown
parent d6cd181e
No related branches found
No related tags found
1 merge request!316Add illustrations from Android app to mailbox intro screen
Pipeline #14034 passed
...@@ -27,8 +27,8 @@ import androidx.compose.foundation.layout.Row ...@@ -27,8 +27,8 @@ import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxHeight import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.heightIn
import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.requiredHeight
import androidx.compose.foundation.layout.widthIn import androidx.compose.foundation.layout.widthIn
import androidx.compose.foundation.rememberScrollState import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.rememberScrollbarAdapter import androidx.compose.foundation.rememberScrollbarAdapter
...@@ -183,7 +183,7 @@ fun MailboxSetupScreen( ...@@ -183,7 +183,7 @@ fun MailboxSetupScreen(
errorMessage = i18n("mailbox.setup.link.error"), errorMessage = i18n("mailbox.setup.link.error"),
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth()
.requiredHeight(96.dp) .heightIn(min = 96.dp)
.description(i18n("mailbox.setup.hint")), .description(i18n("mailbox.setup.hint")),
) )
if (pairingUiState is NotSetup) Button( if (pairingUiState is NotSetup) Button(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment