I'm interested in creating an Android swipe view control that looks like this in my React Native app:
Are there mature libraries/APIs out there that will help me do this in React Native, or would I have to write a Java module that accessed platform APIs?
(If I'd have to write a Java module, maybe lend me some tips/advice on how that would work out. i.e. assuming I still want to write the pages with JavaScript even if the swipe view is handled in Java, how would I load/display the React component for each tab's page from Java?)
edit: ViewPager looks like just what I'm looking for, but keeping this question open in case there are any higher-starred libs out there that support this?