Skip to content

Commit ba8016c

Browse files
authored
Fix a bug that active tab label shows with inactive color (#174)
In scrollEdgeAppearance : 'transparent' mode the active tab appear its label with inactive tint color
1 parent c31a00f commit ba8016c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native-bottom-tabs/ios/TabViewImpl.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ private func configureTransparentAppearance(tabBar: UITabBar, props: TabViewProp
231231
size: fontSize,
232232
family: props.fontFamily,
233233
weight: props.fontWeight,
234-
inactiveTintColor: props.inactiveTintColor
234+
inactiveTintColor: nil
235235
)
236236

237237
items.forEach { item in

0 commit comments

Comments
 (0)