File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
feature/main/src/main/kotlin/com/ninecraft/booket/feature/main/component Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 11package com.ninecraft.booket.feature.main.component
22
33import androidx.compose.foundation.background
4+ import androidx.compose.foundation.border
45import androidx.compose.foundation.interaction.MutableInteractionSource
56import androidx.compose.foundation.layout.Box
67import androidx.compose.foundation.layout.Column
@@ -50,7 +51,7 @@ internal fun MainBottomBar(
5051 topStart = ReedTheme .spacing.spacing3,
5152 topEnd = ReedTheme .spacing.spacing3,
5253 ),
53- color = ReedTheme .colors.borderPrimary,
54+ color = ReedTheme .colors.borderPrimary.copy(alpha = 0.05f ) ,
5455 offsetY = (- 4 ).dp,
5556 blur = 20 .dp,
5657 )
@@ -60,6 +61,14 @@ internal fun MainBottomBar(
6061 topEnd = ReedTheme .spacing.spacing3,
6162 ),
6263 )
64+ .border(
65+ width = 1 .dp,
66+ color = ReedTheme .colors.borderPrimary,
67+ shape = RoundedCornerShape (
68+ topStart = ReedTheme .spacing.spacing3,
69+ topEnd = ReedTheme .spacing.spacing3,
70+ ),
71+ )
6372 .background(White ),
6473 ) {
6574 Row (
You can’t perform that action at this time.
0 commit comments