Questions tagged [react-native-navigation]

Use this tag for questions related to the React Native Navigation library that provides a complete native navigation solution for React Native apps.

React Native Navigation provides 100% native platform navigation on both iOS and Android for React Native apps.

For more info see github project

https://github.com/wix/react-native-navigation

1903 questions
0
votes
0 answers

React Native Dnyamic amount of stack screens

I am making a React Native Quiz app (nothing special, same as all others). However, there is one feature for it that I am unsure how to complete. User Story: The user should be able to go backwards during the quiz phase to view their previous…
Cevin Thomas
  • 387
  • 3
  • 14
0
votes
1 answer

react-native-navigation and redux

How to write the redux data-flow using react-native-navigation? this is my codes: - Navigation.registerComponent('Scan', () => props => ( ))
0
votes
1 answer

couldn't find a navigation object error in react native

It's my first time using react native and I want to move to another screen (slide2), I have an error which reads "We couldn't find a navigation object. Is your component inside a navigator?" they said the error is in slide one I am kind of stuck,…
0
votes
0 answers

React Native Redux Authentication

I have a redux application which works well with react but I am trying to do the same with a react native app. The flow of the app is that after successful login, token is stored in async storage and the user is routed to home stack and if user…
0
votes
0 answers

React Native reload app or refresh Drawer.Navigator

very new to React native.... I have app with Drawer.Navigator... I implemented login/logout with SecureStore where I keep my token... in my app menu is slightly different when user is logged in or not (I am adding some items in menu)... When I log…
user13401262
  • 121
  • 10
0
votes
1 answer

React native header not pop up smoothly when navigate

I have two StackNavigator in a DrawerNavigator, when I direct between the two StackNavigators, I can see lag in rendering process. For example, I can see the header drop down from the top but not smoothly. How can I make it smooth or make it not…
toblKr
  • 141
  • 2
  • 13
0
votes
1 answer

React-Native Router Flux with Netwoking and Sceenchooser

I have a problem. My App work right now but not like how I want. App.js export default class App extends Component { constructor(props) { super(props); this.state = { data: [], isLoading: true, }; } componentDidMount()…
0
votes
1 answer

React Navigation: Why doesn't minified file in `lib` directory update when I change corresponding file in `src`?

I'm using Material Top Tab navigator in my React Native app. Specifically, I use the function createMaterialTopTabNavigator() which is found in react-navigation-tabs. react-navigation-tabs contains the file lib -> module -> views ->…
0
votes
2 answers

How to make header appear on every screen in react native navigation

It looks like the header works only for stack navigator by default. I wonder how to show headers for any screen opened from the navigator? Code that I have for the main screen const createHomeStack = () =>
Artem
  • 33
  • 3
0
votes
0 answers

React Native Routes Not Displayed With react-native-router-flux

I'm new to using react native for app development. In my App.js, I have imported Routes.js, in which I have used react-native-router-flux.Somehow, Routes is not displayed. However, when I remove alignItems:'center', the background color disappears…
0
votes
4 answers

"Text strings must be rendered within a component" in React Native

I've already added tag after return(, after that the following error resurfaced adjacent tags must be enclosed <>> Error message: Text strings must be rendered within a component. Please request if you need the entire…
0
votes
0 answers

Exit, reset, or clear JavaScript call stack without throw Error?

Given a number of nested promises structured similarly to the example below, is it possible, given a timeout result in delta() to neither return, resolve, nor reject the timeout, and not throw Error(timeout), but somehow exit the JavaScript call…
0
votes
2 answers

react-native-camera crashed my application

When I add dependencies for QrCode Scanner(react-native-camera) and running project, my app is crashing and is not working.
0
votes
1 answer

How to add createStackNavigator inside ImageBackround of view to have common background image?

I am trying to import createStackNavigator from an external file and add it inside ImageBackground of View so that I can have common flow of backround image from top to bottom but I am getting errors like TypeError: No "routes" found in navigation…
0
votes
1 answer

problem to give screenOptions to the DrawerNavigator

I was facing trouble using createDrawerNavigator. I was following there Docs and try to implement something like this: import { createStackNavigator } from '@react-navigation/stack'; import { createDrawerNavigator } from…
falamiw
  • 426
  • 4
  • 16
1 2 3
99
100