Open ngxiaoyi opened 7 years ago
Support component/react element type of 'icon' prop. #20 Now we can use react-native-vector-icons or other image component like this:
<ItemCell icon={<Icon name="ios-person" size={30} color="#4F8EF7" />} > text here </ItemCell>
Remove children proptype check. "this.props.children" is a special prop of React: https://facebook.github.io/react/docs/jsx-in-depth.html#children-in-jsx , the children prop here won't work and will leads to an warning.
update the doc
Tested on my local env, maybe need furthermore tests.
Hey! Looks great @ngxiaoyi!
Thanks.
Looks good, will merge today.
Support component/react element type of 'icon' prop. #20 Now we can use react-native-vector-icons or other image component like this:
Remove children proptype check. "this.props.children" is a special prop of React: https://facebook.github.io/react/docs/jsx-in-depth.html#children-in-jsx , the children prop here won't work and will leads to an warning.
update the doc
Tested on my local env, maybe need furthermore tests.