Longer Dropdown item description gets cut from left
The Dropdown item is not fully displaying or scrolling makes the starting the description not visible to user.How can i avoid this.
same for me
same here :( any update?
same issue here , any update?
after a long long search i resolved it by using the selection property
selection={{ start: 0, end: 0 }}
my final component looks like this:
<Dropdown disabled={this._isLock()} valueExtractor={(i) => i.text} label={props.label} baseColor={themeApp['color-secondary-800']} labelFontSize={Platform.OS === 'ios' ? 15 : 14} textColor="white" itemColor="white" selectedItemColor={themeApp['color-secondary-800']} pickerStyle={{ backgroundColor: themeApp['black'], borderColor: 'white', borderWidth: 1, }} dropdownOffset={{ top: 0, left: 0 }} data={props.options} inputContainerStyle={{ borderBottomWidth: 1, borderBottomColor: themeApp['color-secondary-800'], opacity: 0.8, }} containerStyle={{ paddingVertical: 20, }} selection={{ start: 0, end: 0 }} value={current?.text} onChangeText={this._onChangeSelect} />
hope it helps :D