Zaid Qattan

Results 7 comments of Zaid Qattan

> it is easy. > just add > `pager.transform = CGAffineTransform(scaleX: -1, y: 1)` //in viewDidLoad() > and then > `cell.contentView.transform = CGAffineTransform(scaleX: -1, y: 1)` // in cellForItemAt after...

There is a known issue in iOS 15 so just add this into the AppDelegate inside `didFinishLaunchingWithOptions` and the problem will be fixed ``` if #available(iOS 15, *) { let...

I mean the checkmark like your demo

> I had the same issue > @zaidqattan A current workaround is to force all the subviews of the CBPinEntryView to use leftToRight semantics > > ``` > pinEntryView.subviews.forEach {...

@musa-almatri Fixed! Thank you so much