RTL support
I want to code an application which is Right to Left. But the problem is, it seems that although the dtrop down location is changed but when it is selected, the list is opened from the other side of the screen.
any screenshot?
I want to swap between the text and the arrow. So the text will be at the right side and the dropdown icon will be on the left. How can I do it?

@danmarknm you could render your own content as button of dropdown, and use flexDirection 'row-reverse' for RTL like this:
<ModalDropdown>
<View style={{ flexDirection: RTL ? 'row-reverse' : 'row'}}>
<Text>...</Text>
<Icon ... />
</View>
</ModalDropdown>
I haven't tried the new renderTextButton prop, maybe you could achieve the same using it.
same issue...
The dropdown open at right but should at left:
