🛠️ 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:
Acclorite 2024-08-12 20:32:16 +03:00
parent 739833ed44
commit def3d788f6

View file

@ -90,7 +90,9 @@ fun LicenseItem(
Text( Text(
text = library.author, text = library.author,
style = MaterialTheme.typography.bodyMedium, style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant color = MaterialTheme.colorScheme.onSurfaceVariant,
maxLines = 2,
overflow = TextOverflow.Ellipsis
) )
} }
if (library.licenses.isNotEmpty()) { if (library.licenses.isNotEmpty()) {