React Native navigate - react-native

So I saw a lot of tutorials with "build in" (React Navigation) components and tools like Bottom Tab bar, etc.! But even if it sounds weird I want to make everything on my own.
I do not want weird navigation with a header and than I can swipe to the side and it all looks native, etc.! I want to have like an <a></a> tag to navigate around. So I think in Html it would look like this:
Home
Is there any chance to get this working in React Native? It's not a problem for me to use librarys for helping to navigate but e.g. with React Navigation it all looks so Native - and I do not want this! :) Maybe anybody can help me with my issue? :D

Henrik, I would suggest you using the createBottomTabNavigator from React Navigation, you can read more here reactnavigation.org/docs/bottom-tab-navigator

Related

How to make the MIUI navigation bar transparent in React Native app?

I'm using #react-navigation/native for the navigation in the app, but when I switched to MIUI 12, I noticed that the MIUI navigation bar is overlapping my app navbar and this looks not so good:
That's how it looks
I want this to look like this:
That's how it supposed to look
How can I achieve this goal?
looks like you should create native module Immersive, Read About Immersive
OR you can try this react-native-full-screen. hope this is will be help

Does anyone know how would I create bottom navigation tabs in react native? What would I need to download?

I tried following youtube tutorials on how to create bottom navigation tabs but they seem to have downloaded something already. What would I need to download for a bottom navigation tab?
This is one option, you can follow the steps explained there:
https://reactnavigation.org/docs/bottom-tab-navigator/

How should I implement the mini player like spotify using React Native?

I am thinking of using Bottom Tab Bar or a Bottom Sheet, but I am unable to make it visible on all screens of my Stack Navigator.
Any idea or suggestion will be hugely appreciated.
You probably need to use redux, and modal from react-native and wrap your component to the root.
if you use component in the root then you can use it anywhere with the help of redux.

React Native - Disable certain navigation in TabNavigator

Fairly new and learning React Native.
The project is created with Expo/React Native, I wonder if it is possible to disable Links and Settings
I found this as a working solution. The idea is that by default every screen you put in your stackNavigator is added to this bar, so as you don't want to remove them from your stackNavigator, so you should do another trick. Hope it works for you.

Slide-out vertical nav in UIExplorer example?

I'm interested in using a slide-out vertical navigation in an app using react-native. Is there a trick to this, or is it just a matter of creating a View and adding CSS that makes it respond to a button-tap or a swipe motion?
I've gone through the UIExplorer example in the Github repo, and did not see this style of navigation within it. I am new to react (and react-native, of course). I'm not having trouble with the tutorials I've gone through, just curious if there's a "React Way" to do this, or if I ought to just hack along until I get something working. Thanks.
I work on the <Navigator> component for React Native, and I think it might fit your needs.
Check out the documentation here: http://facebook.github.io/react-native/docs/navigator.html
And the example code in UIExplorer: https://github.com/facebook/react-native/blob/master/Examples/UIExplorer/Navigator/NavigatorExample.js
The navigator is still a work in progress, so feedback is welcome! (you can file an issue on Github and tag me, #ericvicenti)