1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-07-13 14:42:42 +00:00

shared: composable: Increase LinkListItem's padding

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2026-06-02 16:42:46 +08:00
parent ac180ced84
commit 5f55717a9f
@@ -21,7 +21,7 @@ import androidx.compose.ui.tooling.preview.PreviewWrapper
import net.newpipe.app.model.Link
import net.newpipe.app.preview.LinkPreviewProvider
import net.newpipe.app.preview.ThemePreviewProvider
import net.newpipe.app.theme.spaceXSmall
import net.newpipe.app.theme.spaceMedium
/**
* Composable to display information about links
@@ -33,7 +33,7 @@ fun LinkListItem(modifier: Modifier = Modifier, link: Link, onAction: () -> Unit
Column(
modifier = modifier
.fillMaxWidth()
.padding(spaceXSmall)
.padding(spaceMedium)
) {
Text(
text = link.title,