React-native-pager-view: RTL support?

Created on 9 Feb 2020  路  1Comment  路  Source: callstack/react-native-pager-view

Question

question

>All comments

No, use

<ViewPager initialPage={isRTL ? content.length - 1 : 0} ... >
{isRTL ? content.reverse() : content}
</ViewPager>
Was this page helpful?
0 / 5 - 0 ratings