We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 946f469 commit adf3d54Copy full SHA for adf3d54
app/src/main/java/to/bitkit/ui/components/TabBar.kt
@@ -125,12 +125,12 @@ fun BoxScope.TabBar(
125
.size(64.dp)
126
// Shadow 1: gray2 shadow with radius 0 at y=-1 (top highlight)
127
.drawWithContent {
128
- // Draw a subtle top highlight (simulating iOS gray2 shadow at y=-1)
+ // Draw a prominent top highlight
129
drawCircle(
130
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
+ radius = size.width / 2,
+ center = Offset(size.width / 2, size.height / 2 - 1.5.dp.toPx()),
+ alpha = 0.6f
134
)
135
drawContent()
136
}
0 commit comments