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 6b004ab commit 1074b84Copy full SHA for 1074b84
miuix/src/commonMain/kotlin/top/yukonga/miuix/kmp/basic/TabRow.kt
@@ -27,6 +27,7 @@ import androidx.compose.ui.unit.times
27
import top.yukonga.miuix.kmp.theme.MiuixTheme
28
import top.yukonga.miuix.kmp.utils.SmoothRoundedCornerShape
29
import top.yukonga.miuix.kmp.utils.getWindowSize
30
+import top.yukonga.miuix.kmp.utils.overScrollHorizontal
31
32
33
/**
@@ -67,7 +68,8 @@ fun TabRow(
67
68
LazyRow(
69
state = listState,
70
modifier = modifier
- .fillMaxWidth().height(42.dp),
71
+ .fillMaxWidth().height(42.dp)
72
+ .overScrollHorizontal(),
73
verticalAlignment = Alignment.CenterVertically,
74
horizontalArrangement = Arrangement.spacedBy(9.dp)
75
) {
0 commit comments