For #21694 - Remove RoundedCornerShape around the inner Column in RecentlyVisited

This commit is contained in:
Gabriel Luong 2021-10-04 16:16:35 -04:00 committed by mergify[bot]
parent 5fc979090a
commit a1e6872f6f
1 changed files with 2 additions and 4 deletions

View File

@ -38,7 +38,6 @@ import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.style.TextOverflow
@ -79,7 +78,7 @@ fun RecentlyVisited(
items(itemsList) { items ->
Column(
modifier = Modifier.fillMaxWidth().clip(RoundedCornerShape(8.dp))
modifier = Modifier.fillMaxWidth()
) {
items.forEachIndexed { index, recentVisit ->
RecentVisitItem(
@ -118,8 +117,7 @@ private fun RecentVisitItem(
onClick = { onRecentVisitClick(recentVisit) },
onLongClick = { menuExpanded = true }
)
.size(268.dp, 56.dp)
.background(color = FirefoxTheme.colors.surface),
.size(268.dp, 56.dp),
verticalAlignment = Alignment.CenterVertically
) {
Image(