Skip to content

Commit

Permalink
fix(ui): internal changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JunkFood02 committed Sep 26, 2024
1 parent 39e426d commit 96f869a
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1385,17 +1385,16 @@ private fun DialogCheckBoxItemVariant(
modifier
.fillMaxWidth()
.toggleable(value = checked, enabled = true, onValueChange = onValueChange)
.padding(horizontal = 12.dp)
.padding(bottom = 12.dp),
verticalAlignment = Alignment.CenterVertically,
.padding(horizontal = 12.dp),
verticalAlignment = Alignment.Top,
) {
Checkbox(
modifier = Modifier.align(Alignment.Top).clearAndSetSemantics {},
modifier = Modifier.clearAndSetSemantics {},
checked = checked,
onCheckedChange = onValueChange,
)
Text(
modifier = Modifier.fillMaxWidth().padding(top = 12.dp),
modifier = Modifier.fillMaxWidth().padding(vertical = 16.dp),
text = text,
style = MaterialTheme.typography.bodyMedium,
maxLines = 2,
Expand Down

0 comments on commit 96f869a

Please sign in to comment.