1
0
mirror of https://github.com/TeamNewPipe/NewPipe.git synced 2024-11-22 02:53:09 +01:00

Fix some modifiers

This commit is contained in:
Isira Seneviratne 2024-07-16 19:09:38 +05:30
parent edab9a6a1f
commit f984b26626
2 changed files with 5 additions and 4 deletions

View File

@ -61,9 +61,9 @@ fun Comment(comment: CommentsInfoItem) {
Row(
modifier = Modifier
.fillMaxWidth()
.animateContentSize()
.clickable { isExpanded = !isExpanded }
.padding(all = 8.dp),
.padding(8.dp),
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
if (ImageStrategy.shouldLoadImages()) {
@ -102,7 +102,6 @@ fun Comment(comment: CommentsInfoItem) {
}
Text(
modifier = Modifier.animateContentSize(),
text = rememberParsedDescription(comment.commentText),
// If the comment is expanded, we display all its content
// otherwise we only display the first two lines

View File

@ -84,7 +84,9 @@ private fun NoCommentsMessage(error: Throwable?) {
}
Column(
modifier = Modifier.fillMaxWidth().wrapContentSize(Alignment.Center),
modifier = Modifier
.fillMaxWidth()
.wrapContentSize(Alignment.Center),
horizontalAlignment = Alignment.CenterHorizontally
) {
Text(text = "(╯°-°)╯", fontSize = 35.sp)