-
Notifications
You must be signed in to change notification settings - Fork 424
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTL Support #161
Comments
Hi! You can select items manually using the switch UIView.userInterfaceLayoutDirection(for: view.semanticContentAttribute) {
case .leftToRight:
pagingViewController.select(index: 0)
case .rightToLeft:
pagingViewController.select(index: 3)
} Let me know if that works for you. I will also look into adding RTL support directly to Parchment 👍 |
@ahmedraad did you get this working? |
Hi @rechsteiner ! |
Hi @rechsteiner |
Hey guys, I have workaround for this RTL languages. I am using datasource and delegates for
and when the paging controller is added to view controller I set its index to last like this
I hope this helps other people too And @rechsteiner thank you so much for your awesome contribution to community |
I have second workaround. You can transform PagingViewController, PagingCell and embeded view controllers by: |
The new version with proper RTL support is finally out now! https://github.com/rechsteiner/Parchment/releases/tag/v3.0.0 |
Hi There
I've been used this amazing library, but i'm having a little issue with direction in Arabic localization, so it's there any method to make start index from right side ?
Thanks
The text was updated successfully, but these errors were encountered: