fix(ui): NavigationBar text color

This commit is contained in:
junkfood 2024-02-02 02:32:56 +08:00 committed by Ash
parent 92f994f069
commit 57c1d3a5b7

@ -83,7 +83,9 @@ fun FilterBar(
colors = NavigationBarItemDefaults.colors(
indicatorColor = indicatorColor,
unselectedIconColor = MaterialTheme.colorScheme.onSurfaceVariant,
selectedIconColor = MaterialTheme.colorScheme.contentColorFor(indicatorColor)
selectedIconColor = MaterialTheme.colorScheme.contentColorFor(indicatorColor),
unselectedTextColor = MaterialTheme.colorScheme.onSurfaceVariant,
selectedTextColor = MaterialTheme.colorScheme.onSurface
)
)
}