Gathering detailed insights and metrics for react-native-paper-tabs
Gathering detailed insights and metrics for react-native-paper-tabs
Gathering detailed insights and metrics for react-native-paper-tabs
Gathering detailed insights and metrics for react-native-paper-tabs
@react-navigation/material-bottom-tabs
Integration for bottom navigation component from react-native-paper
d-react-native-paper-tabs
Smooth and fast cross platform Material Design Tabs for React Native Paper
rs-react-native-paper-tabs
Smooth and fast cross platform Material Design Tabs for React Native Paper
react-native-paper-tabs-mod
Smooth and fast cross platform Material Design Tabs for React Native Paper
Smooth and fast cross platform Material Design Tabs for React Native Paper
npm install react-native-paper-tabs
Typescript
Module System
Node Version
NPM Version
TypeScript (97.24%)
JavaScript (2.76%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
232 Stars
117 Commits
40 Forks
3 Watchers
1 Branches
9 Contributors
Updated on Jul 11, 2025
Latest Version
0.11.4
Package Id
react-native-paper-tabs@0.11.4
Unpacked Size
946.15 kB
Size
94.69 kB
File Count
160
NPM Version
10.8.2
Node Version
18.20.8
Published on
Apr 12, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
4
22
Web demo: reactnativepapertabs.com
We want developers to be able to build software faster using modern tools like GraphQL, Golang and React Native.
Give us a follow on Twitter: RichardLindhout, web_ridge
Please contribute or donate so we can spend more time on this library.
Yarn
1yarn add react-native-paper-tabs react-native-pager-view
npm
1npm install react-native-paper-tabs react-native-pager-view
1import { 2 Button, 3 Title, 4 Paragraph, 5} from 'react-native-paper'; 6import { 7 TabsProvider, 8 Tabs, 9 TabScreen, 10 useTabIndex, 11 useTabNavigation, 12} from 'react-native-paper-tabs'; 13 14function Example() { 15 return ( 16 <TabsProvider 17 defaultIndex={0} 18 // onChangeIndex={handleChangeIndex} optional 19 > 20 <Tabs 21 // uppercase={false} // true/false | default=true (on material v2) | labels are uppercase 22 // showTextLabel={false} // true/false | default=false (KEEP PROVIDING LABEL WE USE IT AS KEY INTERNALLY + SCREEN READERS) 23 // iconPosition // leading, top | default=leading 24 // style={{ backgroundColor:'#fff' }} // works the same as AppBar in react-native-paper 25 // dark={false} // works the same as AppBar in react-native-paper 26 // theme={} // works the same as AppBar in react-native-paper 27 // mode="scrollable" // fixed, scrollable | default=fixed 28 // showLeadingSpace={true} // (default=true) show leading space in scrollable tabs inside the header 29 // disableSwipe={false} // (default=false) disable swipe to left/right gestures 30 // tabHeaderStyle // style object, can be animated properties as well in 31 // tabLabelStyle // style object 32 > 33 <TabScreen label="Explore" icon="compass"> 34 <ExploreWitHookExamples /> 35 </TabScreen> 36 <TabScreen label="Flights" icon="airplane" disabled> 37 <View style={{ backgroundColor: 'black', flex:1 }} /> 38 </TabScreen> 39 <TabScreen 40 label="Trips" 41 icon="bag-suitcase" 42 // optional props 43 // badge={true} // only show indicator 44 // badge="text" 45 // badge={1} 46 // onPressIn={() => { 47 // console.log('onPressIn explore'); 48 // }} 49 // onPress={() => { 50 // console.log('onPress explore'); 51 // }} 52 > 53 <View style={{ backgroundColor: 'red', flex:1 }} /> 54 </TabScreen> 55 </Tabs> 56 </TabsProvider> 57 ) 58} 59 60function ExploreWitHookExamples() { 61 const goTo = useTabNavigation(); 62 const index = useTabIndex(); 63 return ( 64 <View style={{ flex:1 }}> 65 <Title>Explore</Title> 66 <Paragraph>Index: {index}</Paragraph> 67 <Button onPress={() => goTo(1)}>Go to Flights</Button> 68 </View> 69 ); 70} 71
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
7 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 6
Reason
Found 4/26 approved changesets -- score normalized to 1
Reason
9 existing vulnerabilities detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More