Skip to content

Commit adf3d54

Browse files
committed
feat: gray top arch
1 parent 946f469 commit adf3d54

File tree

1 file changed

+4
-4
lines changed
  • app/src/main/java/to/bitkit/ui/components

1 file changed

+4
-4
lines changed

app/src/main/java/to/bitkit/ui/components/TabBar.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,12 @@ fun BoxScope.TabBar(
125125
.size(64.dp)
126126
// Shadow 1: gray2 shadow with radius 0 at y=-1 (top highlight)
127127
.drawWithContent {
128-
// Draw a subtle top highlight (simulating iOS gray2 shadow at y=-1)
128+
// Draw a prominent top highlight
129129
drawCircle(
130130
color = Colors.Gray2,
131-
radius = size.width / 2 + 0.5.dp.toPx(),
132-
center = Offset(size.width / 2, size.height / 2 - 1.dp.toPx()),
133-
alpha = 0.15f
131+
radius = size.width / 2,
132+
center = Offset(size.width / 2, size.height / 2 - 1.5.dp.toPx()),
133+
alpha = 0.6f
134134
)
135135
drawContent()
136136
}

0 commit comments

Comments
 (0)