sohobloo / react-native-modal-dropdown

A react-native dropdown/picker/selector component for both Android & iOS.
MIT License
1.19k stars 478 forks source link

added renderButton property to customize button #235

Open newmsz opened 4 years ago

newmsz commented 4 years ago

Example usage

renderButton={(text) => (
  <View style={{ flexDirection: 'row', alignItems: 'center' }}>
    <Text style={stylesDropdown.textStyle}>{text}</Text>
    <ArrowDropdownIcon />
  </View>
)}
svvitale commented 4 years ago

I'd love to see this get merged!