I have a dropdown which is working properly in english, but when the language changes to Arabic it doesn't show in the right position.
DropDown1.anchorView = self.ClassButton
I have a dropdown which is working properly in english, but when the language changes to Arabic it doesn't show in the right position.
DropDown1.anchorView = self.ClassButton
 
    
     
    
    if LanguageManager.shared.isRightToLeft {
    dropDown.layer.setAffineTransform(CGAffineTransform(scaleX: -1, y: 1))
    dropDown.customCellConfiguration = { (index: Index, item: String, cell: DropDownCell) -> Void in
        // Setup your custom UI components
        cell.optionLabel.layer.setAffineTransform(CGAffineTransform(scaleX: -1, y: 1))
    }
}
