
Security News
libxml2 Maintainer Ends Embargoed Vulnerability Reports, Citing Unsustainable Burden
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
react-native-tabbed-view-pager-android
Advanced tools
An android ViewPager wrapper with built-in tabs.
$ npm install react-native-tabbed-view-pager-android --save
$ react-native link react-native-tabbed-view-pager-android
Not Supported.
android/app/src/main/java/[...]/MainActivity.java
import is.uncommon.rn.widgets.TabbedViewPagerAndroidPackage;
to the imports at the top of the filenew TabbedViewPagerAndroidPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-tabbed-view-pager-android'
project(':react-native-tabbed-view-pager-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-tabbed-view-pager-android/android')
android/app/build.gradle
:
compile project(':react-native-tabbed-view-pager-android')
Not Supported.
import TabbedViewPager from 'react-native-tabbed-view-pager-android';
<TabbedViewPager
tabMode={"scrollable"}
tabGravity={"center"}
tabBackground={"#008B7D"}
tabIndicatorColor={"#FFB90B"}
tabIndicatorHeight={4}
tabTextColor={"#ffffffa0"}
tabSelectedTextColor={"#ffffff"}
tabElevation={4}
tabNames={this.state.tabNames}
style={styles.viewPager}
initialPage={0}
onPageSelected={(event) => this.onPageSelected(event.nativeEvent.position)}
onPageScrollStateChanged={(state) => this.onPageScrollStateChanged(state)}
onPageScroll={(event) => this.onPageScroll(event.nativeEvent)}>
{
this.state.tabNames.map((tabName) => {
return(
<View style={styles.pageStyle} key={tabName}>
<Text>{tabName}</Text>
</View>
)
})
}
</TabbedViewPager>
All props of ViewPagerAndroid are supported. Following table shows tab props supported by this component.
Prop | Type | Default | Optional | Explanation |
---|---|---|---|---|
tabMode | string | scrollable | Yes. | Either fixed or scrollable . |
tabGravity | string | fill | Yes. | Either center or fill . |
tabBackground | string | App theme | Yes. | Entire tab layout background color. Specify in CSS color format. |
tabIndicatorColor | string | App theme | Yes. | Selected tab indicator color. Specify in CSS color format. |
tabIndicatorHeight | number | App theme | Yes. | Selected tab indicator height. Specify in CSS color format. |
tabTextColor | string | App theme | Yes. | Color of the text in the normal/unselected tab. Specify in CSS color format. |
tabSelectedTextColor | string | App theme | Yes. | Color of the text in the selected tab. Specify in CSS color format. |
tabElevation | number | 0 | Yes. | Elevation of the tab layout. Default value is 0. |
tabNames | array | None | No. | A string array of tab names. Non optional prop. Should indicate names in the same order as views of view pager children. |
Look at Example
included with this sample for further details.
FAQs
An android ViewPager wrapper with built-in tabs.
The npm package react-native-tabbed-view-pager-android receives a total of 6 weekly downloads. As such, react-native-tabbed-view-pager-android popularity was classified as not popular.
We found that react-native-tabbed-view-pager-android demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Libxml2’s solo maintainer drops embargoed security fixes, highlighting the burden on unpaid volunteers who keep critical open source software secure.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.