Format
This commit is contained in:
parent
205979b3f7
commit
419c9a45ca
1 changed files with 16 additions and 16 deletions
|
|
@ -145,8 +145,8 @@ fun ActionListView(
|
||||||
onEmojiReactionClicked = ::onEmojiReactionClicked,
|
onEmojiReactionClicked = ::onEmojiReactionClicked,
|
||||||
onCustomReactionClicked = ::onCustomReactionClicked,
|
onCustomReactionClicked = ::onCustomReactionClicked,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.navigationBarsPadding()
|
.navigationBarsPadding()
|
||||||
.imePadding()
|
.imePadding()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -177,8 +177,8 @@ private fun SheetContent(
|
||||||
MessageSummary(
|
MessageSummary(
|
||||||
event = target.event,
|
event = target.event,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.padding(horizontal = 16.dp)
|
.padding(horizontal = 16.dp)
|
||||||
)
|
)
|
||||||
Spacer(modifier = Modifier.height(14.dp))
|
Spacer(modifier = Modifier.height(14.dp))
|
||||||
HorizontalDivider()
|
HorizontalDivider()
|
||||||
|
|
@ -322,13 +322,13 @@ private fun EmojiReactionsRow(
|
||||||
contentDescription = stringResource(id = CommonStrings.a11y_react_with_other_emojis),
|
contentDescription = stringResource(id = CommonStrings.a11y_react_with_other_emojis),
|
||||||
tint = MaterialTheme.colorScheme.secondary,
|
tint = MaterialTheme.colorScheme.secondary,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(24.dp)
|
.size(24.dp)
|
||||||
.clickable(
|
.clickable(
|
||||||
enabled = true,
|
enabled = true,
|
||||||
onClick = onCustomReactionClicked,
|
onClick = onCustomReactionClicked,
|
||||||
indication = rememberRipple(bounded = false, radius = emojiRippleRadius),
|
indication = rememberRipple(bounded = false, radius = emojiRippleRadius),
|
||||||
interactionSource = remember { MutableInteractionSource() }
|
interactionSource = remember { MutableInteractionSource() }
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -352,11 +352,11 @@ private fun EmojiButton(
|
||||||
}
|
}
|
||||||
Box(
|
Box(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(48.dp)
|
.size(48.dp)
|
||||||
.background(backgroundColor, CircleShape)
|
.background(backgroundColor, CircleShape)
|
||||||
.clearAndSetSemantics {
|
.clearAndSetSemantics {
|
||||||
contentDescription = description
|
contentDescription = description
|
||||||
},
|
},
|
||||||
contentAlignment = Alignment.Center
|
contentAlignment = Alignment.Center
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue