File tree Expand file tree Collapse file tree
Jetcaster/tv/src/main/java/com/example/jetcaster/tv/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717package com.example.jetcaster.tv.ui.component
1818
1919import androidx.compose.foundation.layout.padding
20+ import androidx.compose.foundation.shape.RoundedCornerShape
2021import androidx.compose.runtime.Composable
2122import androidx.compose.ui.Modifier
2223import androidx.compose.ui.unit.dp
2324import androidx.tv.material3.Card
25+ import androidx.tv.material3.CardDefaults
2426import androidx.tv.material3.CardScale
2527import androidx.tv.material3.StandardCardContainer
2628import androidx.tv.material3.Text
@@ -39,6 +41,7 @@ internal fun PodcastCard(
3941 onClick = onClick,
4042 interactionSource = it,
4143 scale = CardScale .None ,
44+ shape = CardDefaults .shape(RoundedCornerShape (16 .dp))
4245 ) {
4346 Thumbnail (
4447 podcastInfo = podcastInfo,
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ internal data class OverScanMarginSettings(
3434 val default : OverScanMargin = OverScanMargin (),
3535 val catalog : OverScanMargin = OverScanMargin (end = 0.dp),
3636 val episode : OverScanMargin = OverScanMargin (start = 80.dp, end = 80.dp),
37- val drawer : OverScanMargin = OverScanMargin (start = 0 .dp, end = 0 .dp),
37+ val drawer : OverScanMargin = OverScanMargin (start = 16 .dp, end = 16 .dp),
3838 val podcast : OverScanMargin = OverScanMargin (
3939 top = 40.dp,
4040 bottom = 40.dp,
You can’t perform that action at this time.
0 commit comments