Incoming call screen: ensure buttons stay grouped in the center of the screen.
This commit is contained in:
parent
765ea94166
commit
194f1d2d37
1 changed files with 2 additions and 6 deletions
|
|
@ -97,11 +97,8 @@ internal fun IncomingCallScreen(
|
|||
)
|
||||
}
|
||||
Row(
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.padding(start = 24.dp, end = 24.dp, bottom = 64.dp),
|
||||
horizontalArrangement = Arrangement.SpaceBetween,
|
||||
verticalAlignment = Alignment.CenterVertically
|
||||
modifier = Modifier.padding(bottom = 64.dp),
|
||||
horizontalArrangement = Arrangement.spacedBy(48.dp),
|
||||
) {
|
||||
ActionButton(
|
||||
size = 64.dp,
|
||||
|
|
@ -111,7 +108,6 @@ internal fun IncomingCallScreen(
|
|||
backgroundColor = ElementTheme.colors.iconSuccessPrimary,
|
||||
borderColor = ElementTheme.colors.borderSuccessSubtle
|
||||
)
|
||||
|
||||
ActionButton(
|
||||
size = 64.dp,
|
||||
onClick = onCancel,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue