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 c1a0de9 commit 25608fbCopy full SHA for 25608fb
miuix/src/commonMain/kotlin/top/yukonga/miuix/kmp/basic/NavigationBar.kt
@@ -86,7 +86,7 @@ fun NavigationBar(
86
)
87
}
88
Row(
89
- modifier = Modifier.fillMaxWidth(),
+ modifier = modifier.fillMaxWidth(),
90
horizontalArrangement = Arrangement.SpaceBetween,
91
verticalAlignment = Alignment.CenterVertically
92
) {
@@ -107,7 +107,7 @@ fun NavigationBar(
107
108
val fontWeight = if (isSelected) FontWeight.Medium else FontWeight.Normal
109
Column(
110
- modifier = modifier
+ modifier = Modifier
111
.height(NavigationBarHeight)
112
.weight(1f / items.size)
113
.pointerInput(Unit) {
0 commit comments