Reduce end padding of the composer, to give more space when composing messages.
This commit is contained in:
parent
2c66e3a128
commit
751b5f73bf
1 changed files with 1 additions and 1 deletions
|
|
@ -432,7 +432,7 @@ private fun TextInputBox(
|
||||||
val defaultTypography = ElementTheme.typography.fontBodyLgRegular
|
val defaultTypography = ElementTheme.typography.fontBodyLgRegular
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.padding(top = 4.dp, bottom = 4.dp, start = 12.dp, end = 42.dp)
|
.padding(top = 4.dp, bottom = 4.dp, start = 12.dp, end = 12.dp)
|
||||||
// Apply test tag only once, otherwise 2 nodes will have it (both the normal and subcomposing one) and tests will fail
|
// Apply test tag only once, otherwise 2 nodes will have it (both the normal and subcomposing one) and tests will fail
|
||||||
.then(if (!subcomposing) Modifier.testTag(TestTags.textEditor) else Modifier),
|
.then(if (!subcomposing) Modifier.testTag(TestTags.textEditor) else Modifier),
|
||||||
contentAlignment = Alignment.CenterStart,
|
contentAlignment = Alignment.CenterStart,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue