Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's different between TabNavigator , DrawerNavigator, StackNavigator?

What's different between TabNavigator , DrawerNavigator, StackNavigator ? Explaine, pls, React Navigation and react-native-navigation ?

what is the navigation to choose for simple app ?

like image 420
littleDragon Avatar asked Feb 04 '26 16:02

littleDragon


2 Answers

TabNavigator is for to make tab view

DrawerNavigator is used to develop hamburger menu

StackNavigator is used Simple Navigation.

if you new in React native StackNavigator is very easy for you.

For Simple App you can use StackNavigator and if really required tabview then use

you can use following link for stack navigation

like image 60
Rajesh Nasit Avatar answered Feb 06 '26 06:02

Rajesh Nasit


It depends on how/what you want your app to look like.

For a hamburger menu, you use DrawerNavigation.

For simple app navigation, you use StackNavigation.

And tab, is for your TabNavigation, as in when your app is a Tabview

Read more Here

like image 25
Oluwasayo Babalola Avatar answered Feb 06 '26 05:02

Oluwasayo Babalola