Package Exports
- @react-native-community/viewpager
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@react-native-community/viewpager) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-native-viewpager
Note: This module has been extracted from react-native
as a part of the
Lean Core effort.
For now, this module only works for Android. Under the hood it is using the native Android ViewPager.
Getting started
yarn add @react-native-community/viewpager
Mostly automatic installation
react-native link @react-native-community/viewpager
Manual installation
iOS
Not Supported.
Android
Manually link the library on Android
Make the following changes:android/settings.gradle
include ':@react-native-community_viewpager'
project(':@react-native-community_viewpager').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/viewpager/android')
android/app/build.gradle
dependencies {
...
implementation project(':@react-native-community_viewpager')
}
android/app/src/main/.../MainApplication.java
On top, where imports are:
import com.reactnativecommunity.viewpager.RNCViewPagerPackage;
Add the RNCViewPagerPackage
class to your list of exported packages.
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNCViewPagerPackage()
);
}
Usage
import ViewPager from "@react-native-community/viewpager";
class MyPager extends React.Component {
render() {
return (
<ViewPager
style={styles.viewPager}
initialPage={0}>
<View key="1">
<Text>First page</Text>
</View>
<View key="2">
<Text>Second page</Text>
</View>
</ViewPager>
);
}
}
const styles = StyleSheet.create({
viewPager: {
flex: 1
},
})