🛠️ Limit lines for author property in LicenseItem
Prevents super long author message to occupying the whole screen. Some libraries may have long author screens.
This commit is contained in:
parent
739833ed44
commit
def3d788f6
1 changed files with 3 additions and 1 deletions
|
|
@ -90,7 +90,9 @@ fun LicenseItem(
|
|||
Text(
|
||||
text = library.author,
|
||||
style = MaterialTheme.typography.bodyMedium,
|
||||
color = MaterialTheme.colorScheme.onSurfaceVariant
|
||||
color = MaterialTheme.colorScheme.onSurfaceVariant,
|
||||
maxLines = 2,
|
||||
overflow = TextOverflow.Ellipsis
|
||||
)
|
||||
}
|
||||
if (library.licenses.isNotEmpty()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue