ptomasroos / react-native-tab-navigator

A tab bar that switches between scenes, written in JS for cross-platform support
MIT License
2.4k stars 415 forks source link

Get rid of badgeText warning on invalid PropType #23

Closed qimingfang closed 8 years ago

qimingfang commented 8 years ago

I get a warning when trying to initiate a <TabNavigator.Item> with badgeText={"1"} (as in example):

Warning: Failed propType: Invalid prop badgeText of value 1 supplied to TabNavigatorItem, expected one of [null,null].

Changing its PropType to oneOfType resolved this warning.