n4kz/react-native-material-dropdown

How to show dropdown arrow on the far Left?

iamir4g opened this issue · 4 comments

hi, I use renderAccessory to show my custom icon but I want to show this icon to left box of dropDown, how to manage this?

renderLeftAccessory

@rollsroyc3 thank but didnt change. this is my code:

renderLeftAccessory={() => (
          <Image
            resizeMode="contain"
            source={combo_arrow_icon}
            style={{
              marginTop: 5,
              marginRight: 16,
            }}
          />
        )}

renderAccessory is not working.... any solution. I have to show the arrow towards right in the dropdown. there is no arrow shown on the dropdown. please suggest. Thanks

renderAccessory is not working.... any solution. I have to show the arrow towards right in the dropdown. there is no arrow shown on the dropdown. please suggest. Thanks

hi
I use this code :
renderAccessory={() => (
<Image resizeMode="contain" source={combo_arrow_icon} style={{right: width * .78, marginRight: 16, }} />
)}