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 b316f2f commit 1e0dd9bCopy full SHA for 1e0dd9b
packages/react-native-bottom-tabs/android/src/main/java/com/rcttabview/RCTTabViewImpl.kt
@@ -36,7 +36,8 @@ class RCTTabViewImpl {
36
badge = if (item.hasKey("badge")) item.getString("badge") else null,
37
activeTintColor = if (item.hasKey("activeTintColor")) item.getInt("activeTintColor") else null,
38
hidden = if (item.hasKey("hidden")) item.getBoolean("hidden") else false,
39
- testID = item.getString("testID")
+ testID = item.getString("testID"),
40
+ role = item.getString("role"),
41
)
42
43
}
0 commit comments