mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 23:27:04 +05:30
fix(common): re-add spacer to comments page
This commit is contained in:
parent
dc06410fc4
commit
bf52966772
1 changed files with 4 additions and 0 deletions
|
@ -14,7 +14,9 @@ import androidx.compose.foundation.layout.Arrangement
|
|||
import androidx.compose.foundation.layout.Box
|
||||
import androidx.compose.foundation.layout.Column
|
||||
import androidx.compose.foundation.layout.PaddingValues
|
||||
import androidx.compose.foundation.layout.Spacer
|
||||
import androidx.compose.foundation.layout.fillMaxWidth
|
||||
import androidx.compose.foundation.layout.height
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.lazy.LazyColumn
|
||||
import androidx.compose.material3.HorizontalDivider
|
||||
|
@ -91,6 +93,8 @@ internal fun CommentsPageInternal(
|
|||
commentNodes.forEach { node ->
|
||||
item(key = node.comment.shortId) { Node(node, htmlConverter, openUserProfile) }
|
||||
}
|
||||
|
||||
item(key = "bottom_spacer") { Spacer(modifier = Modifier.height(16.dp)) }
|
||||
} else {
|
||||
item {
|
||||
Text(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue