Skip to content

Commit

Permalink
[FIX]#147: Toast 가려지는 문제 해
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Aug 29, 2024
1 parent bb84267 commit 1d1aeb5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/ui/src/main/kotlin/com/bff/wespot/ui/TopToast.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import androidx.compose.ui.zIndex
import com.bff.wespot.designsystem.component.indicator.WSToast
import com.bff.wespot.designsystem.component.indicator.WSToastType

Expand All @@ -20,7 +21,8 @@ fun TopToast(
Box(
modifier = Modifier
.fillMaxSize()
.padding(top = 12.dp),
.padding(top = 12.dp)
.zIndex(99f),
contentAlignment = Alignment.TopCenter,
) {
WSToast(
Expand Down

0 comments on commit 1d1aeb5

Please sign in to comment.