![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@wezyy1/rn-animated-tab-nav
Advanced tools
A cross-platform Tab Navigation component for React Native.
The tag bar component is mainly used for bottom navigation, which is convenient for users to switch between different pages quickly. And it is suggested that the number of tags should be controlled within 3-5.
Installation can be done by using the npm install command:
$ npm install @wezyy1/rn-animated-tab-nav
import React from 'react';
import { View, SafeAreaView, Text } from 'react-native';
import TabNav from '@wezyy1/rn-animated-tab-nav'
export default class App extends React.Component{
state = {
currentPageIndex: 0,
tabInfo:[{
id: 1,
label: 'Home',
icon: 'home',
color:'#10A8F6',
backgroundColor:'#E9F8FF'
},{
id: 2,
label: 'Dairy',
icon: 'book',
color:'#F65E10',
backgroundColor:'#FFF1E9'
},{
id: 3,
label: 'Search',
icon: 'search',
color:'#A79507',
backgroundColor:'#FFFBDC'
},{
id: 4,
label: 'Me',
icon: 'user',
color:'#7B14DA',
backgroundColor:'#EBDAFA'
}]
}
handlePressTab = (pageValue) => {
this.setState({currentPageIndex: pageValue})
}
render(){
const { currentPageIndex } = this.state
let mainPage = <View><Text>Home</Text></View>
if(currentPageIndex === 1){
mainPage = <View><Text>Book</Text></View>
} else if (currentPageIndex === 2){
mainPage = <View><Text>Search</Text></View>
} else if (currentPageIndex === 3){
mainPage = <View><Text>Me</Text></View>
}
return(
<SafeAreaView style={{flex:1}}>
<View style={{flex:1}}>
{mainPage}
<TabNav handlePressTab={this.handlePressTab} tabInfo={this.state.tabInfo} currentPageIndex={this.state.currentPageIndex}/>
</View>
</SafeAreaView>
)
}
}
You can use this tab Navigation with react native stack navigation as well. Documentation of React Navigation
Example:
import React from 'react';
import { View, SafeAreaView, Text } from 'react-native';
import TabNav from '@wezyy1/rn-animated-tab-nav'
import { createStackNavigator } from '@react-navigation/stack';
import { NavigationContainer } from '@react-navigation/native';
const Home = ({navigation}) => <View><Text onPress={() => navigation.navigate('HomeDetail')}>Home</Text></View>
const HomeDetail = () => <View><Text>HomeDetail</Text></View>
const HomeStack = createStackNavigator();
function HomeStackScreen() {
return (
<HomeStack.Navigator>
<HomeStack.Screen name="Home" component={Home}/>
<HomeStack.Screen name="HomeDetail" component={HomeDetail}/>
</HomeStack.Navigator>
);
}
export default class App extends React.Component{
state = {
currentPageIndex: 0,
tabInfo:[{
id: 1,
label: 'Home',
icon: 'home',
color:'#10A8F6',
backgroundColor:'#E9F8FF'
},{
id: 2,
label: 'Dairy',
icon: 'book',
color:'#F65E10',
backgroundColor:'#FFF1E9'
},{
id: 3,
label: 'Search',
icon: 'search',
color:'#A79507',
backgroundColor:'#FFFBDC'
},{
id: 4,
label: 'Me',
icon: 'user',
color:'#7B14DA',
backgroundColor:'#EBDAFA'
}]
}
handlePressTab = (pageValue) => {
this.setState({currentPageIndex: pageValue})
}
render(){
const { currentPageIndex } = this.state
let mainPage = <HomeStackScreen/>
if(currentPageIndex === 1){
mainPage = <View><Text>Book</Text></View>
} else if (currentPageIndex === 2){
mainPage = <View><Text>Search</Text></View>
} else if (currentPageIndex === 3){
mainPage = <View><Text>Me</Text></View>
}
return(
<SafeAreaView style={{flex:1}}>
<View style={{flex:1}}>
<NavigationContainer>
{mainPage}
</NavigationContainer>
<TabNav handlePressTab={this.handlePressTab} tabInfo={this.state.tabInfo} currentPageIndex={this.state.currentPageIndex}/>
</View>
</SafeAreaView>
)
}
}
Property | Description | Type | Required |
---|---|---|---|
tabInfo | This is an array of the information of the tab navigation. (See more detail in the next table.) | Array | ture |
tabStyle | The style of the tab bar contener. | Style Object | false |
itemStyle | The style of the tab item. | Style Object | false |
currentPageIndex | This is the index of the active item. | Number | true |
handlePressTab | Callback Function when press tab item. This function will get the index of the pressed tab item. | Function | true |
Property | Description | Type | Required |
---|---|---|---|
label | The label displayed in the tab item. | String | true |
icon | The name of the icon you want to use. Feather Icon is suported. You can find the icon and name here. | String | true |
color | The color of the icon and label when the item is active. | Color String | true |
backgroundColor | The color of background when the item is active. | Color String | true |
FAQs
A cross-platform Tab Navigation component for React Native.
The npm package @wezyy1/rn-animated-tab-nav receives a total of 0 weekly downloads. As such, @wezyy1/rn-animated-tab-nav popularity was classified as not popular.
We found that @wezyy1/rn-animated-tab-nav 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.