Gathering detailed insights and metrics for react-native-paper-tabs-mod
Gathering detailed insights and metrics for react-native-paper-tabs-mod
Gathering detailed insights and metrics for react-native-paper-tabs-mod
Gathering detailed insights and metrics for react-native-paper-tabs-mod
Smooth and fast cross platform Material Design Tabs for React Native Paper
npm install react-native-paper-tabs-mod
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.4.2
Package Id
react-native-paper-tabs-mod@0.4.2
Unpacked Size
206.14 kB
Size
37.58 kB
File Count
75
NPM Version
7.17.0
Node Version
14.16.0
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
5
28
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 Tabs, 8 TabScreen, 9 useTabIndex, 10 useTabNavigation, 11} from 'react-native-paper-tabs'; 12 13function Example() { 14 return ( 15 <Tabs 16 // defaultIndex={0} // default = 0 17 // uppercase={false} // true/false | default=true | labels are uppercase 18 // showTextLabel={false} // true/false | default=false (KEEP PROVIDING LABEL WE USE IT AS KEY INTERNALLY + SCREEN READERS) 19 // iconPosition // leading, top | default=leading 20 // style={{ backgroundColor:'#fff' }} // works the same as AppBar in react-native-paper 21 // dark={false} // works the same as AppBar in react-native-paper 22 // theme={} // works the same as AppBar in react-native-paper 23 // mode="scrollable" // fixed, scrollable | default=fixed 24 // onChangeIndex={(newIndex) => {}} // react on index change 25 // showLeadingSpace={true} // (default=true) show leading space in scrollable tabs inside the header 26 > 27 <TabScreen label="Explore" icon="compass"> 28 <ExploreWitHookExamples /> 29 </TabScreen> 30 <TabScreen label="Flights" icon="airplane"> 31 <View style={{ backgroundColor: 'black', flex:1 }} /> 32 </TabScreen> 33 <TabScreen label="Trips" icon="bag-suitcase"> 34 <View style={{ backgroundColor: 'red', flex:1 }} /> 35 </TabScreen> 36 </Tabs> 37 ) 38} 39 40function ExploreWitHookExamples() { 41 const goTo = useTabNavigation(); 42 const index = useTabIndex(); 43 return ( 44 <View style={{ flex:1 }}> 45 <Title>Explore</Title> 46 <Paragraph>Index: {index}</Paragraph> 47 <Button onPress={() => goTo(1)}>Go to Flights</Button> 48 </View> 49 ); 50} 51
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