native-material-dropdown`, I want to create this dropdown in the picture below:

but the arrow in the left :
 how can I change this to left? this my code below :
  < Dropdown
        renderAccessory={() => (
          <Image resizeMode="contain" source={combo_arrow_icon} style={{ marginTop: 5, justifyContent: 'center', }}/>
        )}
        inputContainerStyle={{ borderBottomColor: 'transparent' }}
        onChangeText={(value) => props.newHandelChange(value)}
        dropdownMargins={{ min: 15, max: 15 }}
        dropdownOffset={{ top: 10, left: 0 }}
        dropdownPosition={- 5}
        style={{ marginTop: 5, fontWeight: 'bold', fontFamily: 'IRANSansMobile', fontSize: 16, textAlign: 'right', }}
        itemTextStyle={{ textAlign: 'center', fontFamily: 'IRANSansMobile' }}
        absoluteRTLLayout={false}
        containerStyle={{ backgroundColor: '#59c5b8', borderWidth: 0.5, borderRadius: 1, marginLeft: 16, marginRight: 16, marginBottom: 8, fontSize: 18, fontFamily: 'IRANSansMobile' }}
        data={props.data ? props.data : dataGroup}
        placeholder="(پیش فرض گروه فعال)..."
        placeholderTextColor='#000'
        placeholderStyle={{ fontWeight: '200', fontFamily: 'IRANSansMobile', }}
      />
