Skip to content

Commit

Permalink
ListToggleItem 배경 투명
Browse files Browse the repository at this point in the history
  • Loading branch information
Gael-Android committed Nov 27, 2023
1 parent e6d59bc commit f259339
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.yourssu.design.system.compose.YdsTheme
Expand All @@ -32,7 +33,7 @@ fun ListToggleItem(
modifier = modifier
.fillMaxWidth()
.height(48.dp)
.background(color = YdsTheme.colors.bgNormal),
.background(color = Color.Transparent),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically
) {
Expand Down

0 comments on commit f259339

Please sign in to comment.