I implemented a dropdown picker.I wanted to reduce the height of picker but when I try to reduce the height of picker in container style its reducing the height of view that hold the dropdownpicker,no changes are reflecting on dropdown.How to reduce the height of dropdown picker?Or can anyone suggest a good dropdown library?
<DropDownPicker
dropDownDirection='BOTTOM'
dropDownContainerStyle={{height : hp('10%'),width : wp('20%')}}
style={{
marginRight : wp('4%'),
}}
containerStyle={{
width:wp('20%'),
marginRight : wp('7%'),
height : hp('5%'),
}}
labelStyle={{fontSize : hp('1.25%')}}
value={this.state.lineValue}
items={this.ITEMS}
open={this.state.open}
onSelectItem={item => this.onChangeWeek(item.value)}
textStyle={{fontSize : hp('1.25%')}}
setOpen={item => this.setState({open : item})}
/>