fix(music): use white tab labels instead of default blue

The music library tab view did not set tabBarActiveTintColor/
tabBarInactiveTintColor, so React Navigation's material-top-tabs
fell back to its default blue active tint. Set explicit white
(active) and gray (inactive) tint colors.
This commit is contained in:
Fredrik Burmester
2026-06-02 20:43:34 +02:00
parent 46bd2a784e
commit 389cbd4259

View File

@@ -40,6 +40,8 @@ const Layout = () => {
keyboardDismissMode='none'
screenOptions={{
tabBarBounces: true,
tabBarActiveTintColor: "#FFFFFF",
tabBarInactiveTintColor: "#9CA3AF",
tabBarLabelStyle: {
fontSize: TAB_LABEL_FONT_SIZE,
fontWeight: "600",