Fixed centering FormListItem text

This commit is contained in:
dankito 2024-09-20 12:13:41 +02:00
parent b86c59ef24
commit a88ddbdd16
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ private fun FormListItemImpl(
}
}
Text(label, color = Colors.FormListItemTextColor, fontSize = 16.sp, maxLines = 1, overflow = TextOverflow.Ellipsis, modifier = Modifier.fillMaxHeight())
Text(label, color = Colors.FormListItemTextColor, fontSize = 16.sp, maxLines = 1, overflow = TextOverflow.Ellipsis)
}
}