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 f913f13 commit 1322706Copy full SHA for 1322706
packages/react-native-bottom-tabs/android/src/main/java/com/rcttabview/RCTTabViewImpl.kt
@@ -17,7 +17,6 @@ data class TabInfo(
17
val activeTintColor: Int?,
18
val hidden: Boolean,
19
val testID: String?,
20
- val role: String?
21
)
22
23
class RCTTabViewImpl {
@@ -36,8 +35,7 @@ class RCTTabViewImpl {
36
35
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"),
40
- role = item.getString("role"),
+ testID = item.getString("testID")
41
42
43
}
0 commit comments