Skip to content

Commit

Permalink
Add spacer to bottom of comment lists (#1074)
Browse files Browse the repository at this point in the history
  • Loading branch information
twizmwazin authored Jul 21, 2023
1 parent 1146bf3 commit fdf0ddd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
package com.jerboa.ui.components.comment

import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.LazyListScope
import androidx.compose.foundation.lazy.LazyListState
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import com.jerboa.CommentNodeData
import com.jerboa.datatypes.types.CommentView
import com.jerboa.datatypes.types.Community
Expand Down Expand Up @@ -85,6 +89,9 @@ fun CommentNodes(
showAvatar = showAvatar,
blurNSFW = blurNSFW,
)
item {
Spacer(modifier = Modifier.height(100.dp))
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,9 @@ fun PostActivity(
},
blurNSFW = blurNSFW,
)
item {
Spacer(modifier = Modifier.height(100.dp))
}
}

else -> {}
Expand Down

0 comments on commit fdf0ddd

Please sign in to comment.