Gathering detailed insights and metrics for @deliriumproducts/react-native-animated-nav-tab-bar
Gathering detailed insights and metrics for @deliriumproducts/react-native-animated-nav-tab-bar
Gathering detailed insights and metrics for @deliriumproducts/react-native-animated-nav-tab-bar
Gathering detailed insights and metrics for @deliriumproducts/react-native-animated-nav-tab-bar
A simple and customisable React Native component that implements an animated bottom tab bar for React Navigation.
npm install @deliriumproducts/react-native-animated-nav-tab-bar
Typescript
Module System
Node Version
NPM Version
JavaScript (47.87%)
Java (16.41%)
Objective-C (14.05%)
Starlark (10.85%)
Ruby (10.81%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
1 Stars
54 Commits
1 Watchers
3 Branches
1 Contributors
Updated on Aug 30, 2020
Latest Version
2.0.1
Package Id
@deliriumproducts/react-native-animated-nav-tab-bar@2.0.1
Unpacked Size
12.72 kB
Size
4.74 kB
File Count
8
NPM Version
6.11.3
Node Version
12.12.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
2
1
A simple and customisable React Native component that implements an animated bottom tab bar for React Navigation.
❗️In order to use the component, you need to have React Navigation installed
If using yarn
yarn add react-native-animated-nav-tab-bar
If using npm
npm install react-native-animated-nav-tab-bar
1import { TabBar } from "react-native-animated-nav-tab-bar";
Simply place a <TabBar />
tag in the tabBar
in the configuration option object of the navigation function
1... 2 3const Tabs = createBottomTabNavigator(); 4 5export default () => ( 6 <Tabs.Navigator 7 tabBarOptions={{ 8 activeTintColor: "#2F7C6E", 9 inactiveTintColor: "#222222" 10 }} 11 tabBar={props => ( 12 <TabBar 13 activeColors={['#e6b580', '#8e87d6', '#c095c9']} // or activeColors={'#e6b580'} 14 activeTabBackgrounds={['#ede7e6', '#eae3f6', '#eae4f6']} // or activeTabBackgrounds={'#ede7e6'} 15 {...props} 16 /> 17 )} 18 > 19 </Tabs.Navigator>
Add icons to your Bottom Navigation To use this, you need react-native-vector-icons
Example
1import Icon from 'react-native-vector-icons/Feather'; 2... 3 4export default () => 5 <Tabs.Navigator 6 tabBarOptions={{ 7 activeTintColor: "#2F7C6E", 8 inactiveTintColor: "#222222" 9 }} 10 tabBar={props => ( 11 <TabBar 12 activeColors={"#2F7C6E"} 13 activeTabBackgrounds={"#DFF7F6"} 14 {...props} 15 /> 16 )} 17 > 18 <Tabs.Screen 19 name="Home" 20 component={Home} 21 options={{ 22 tabBarIcon: ({ focused, color, size }) => ( 23 <Icon 24 name="Home" 25 size={size ? size : 24} 26 color={focused ? color : "#222222"} 27 focused={focused} 28 color={color} 29 /> 30 ) 31 }} 32 /> 33 </Tabs.Navigator> 34...
Name | Description | Default | Type |
---|---|---|---|
activeTabBackground | Color of active tab backgorund | #E4F7F7 | String |
tabBarBackground | Backgorund color for the wrapper that contains the navigation tabs | #FFFFFF | String |
shadow | If set to true, the wrapper has a light shadow | true | Bool |
verticalPadding | Vertical space between for the tab buttons | 10 | Number |
topPadding | Space between the tab button and the wrapper (top) | 10 | Number |
Pull requests are always welcome! Feel free to open a new GitHub issue for any changes that can be made.
Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub
Catalin Torge @torgeadelin
No vulnerabilities found.
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
no SAST tool detected
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
75 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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