Gathering detailed insights and metrics for rn-wave-bottom-bar-rtl-support
Gathering detailed insights and metrics for rn-wave-bottom-bar-rtl-support
Gathering detailed insights and metrics for rn-wave-bottom-bar-rtl-support
Gathering detailed insights and metrics for rn-wave-bottom-bar-rtl-support
🌊 Animated Tab Bottom Bar for react-navigation
npm install rn-wave-bottom-bar-rtl-support
Typescript
Module System
Node Version
NPM Version
TypeScript (63.18%)
Java (15.03%)
Objective-C (10.13%)
JavaScript (8.46%)
Ruby (1.83%)
Starlark (1.36%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
2 Stars
43 Commits
9 Branches
1 Contributors
Updated on Apr 07, 2022
Latest Version
0.1.4
Package Id
rn-wave-bottom-bar-rtl-support@0.1.4
Unpacked Size
139.87 kB
Size
21.03 kB
File Count
75
NPM Version
7.6.2
Node Version
14.15.4
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
5
32
Custom animated bottom-tab-bar for react-native.
yarn add rn-wave-bottom-bar
or
yarn install rn-wave-bottom-bar --save
1const Tab = createBottomTabNavigator(); 2 3const tabBarIcon = (name: string) => ({ 4 focused, 5 color, 6 size, 7}: { 8 focused: boolean; 9 color: string; // Defines fab icon color 10 size: number; 11}) => <Icon name={name} size={28} color={focused ? 'white' : 'white'} />; 12 13<NavigationContainer> 14 <Tab.Navigator 15 tabBarOptions={{ 16 activeTintColor: 'purple', 17 }} 18 tabBar={(props) => ( 19 <BottomFabBar 20 color="purple" 21 {...props} 22 isRtl={false} 23 /> 24 )}> 25 <Tab.Screen 26 options={{tabBarIcon: tabBarIcon('aliwangwang-o1')}} 27 name="Home" 28 component={generateScreen('Home')} 29 /> 30 <Tab.Screen 31 name="Meh" 32 options={{tabBarIcon: tabBarIcon('meh')}} 33 component={generateScreen('Meh')} 34 /> 35 </Tab.Navigator> 36</NavigationContainer>;
Prop | Type | Description |
---|---|---|
color | string | Bottom Bar background color |
springConfig | Animated.SpringConfig | Spring config for the animation |
tabBarProps | BottomTabBarProps | TabBar props passed from the Tab Component |
Thanks to Jm-Zion for this original component : https://github.com/Jm-Zion
Thanks to W.Candillon for the tuto : https://www.youtube.com/watch?v=6LsLgHeX500
Initial Design : https://uimovement.com/design/tab-bar-3/
✅ Works well with mosts Devices and tested on iPad, IPhones, Android Devices.
✅ Support device orientation.
✅ Support i18n (rtl/ltr direction).
No vulnerabilities found.
Reason
license file detected
Details
Reason
binaries present in source code
Details
Reason
Found 0/24 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
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
82 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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