Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Sources/FSPageViewLayout.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ class FSPagerViewLayout: UICollectionViewLayout {
return FSPagerViewLayoutAttributes.self
}

override var flipsHorizontallyInOppositeLayoutDirection: Bool {
let currentLanguage = String((Bundle.main.preferredLocalizations.first ?? "").prefix(2))?.uppercased()
let rtlLanguages = ["AR", "AZ", "DV", "HE", "KU", "FA", "UR"]
return rtlLanguages.contains(currentLanguage)
}

fileprivate var pagerView: FSPagerView? {
return self.collectionView?.superview?.superview as? FSPagerView
}
Expand Down