Questions tagged [react-native-router-flux]

react-native-router-flux is a routing package for react native based on new React Native Navigation API. It helps users to define all the routes in one central place and navigate and communicate between different screens in an easy way.

Official repository : link

621 questions
0
votes
1 answer

how to use react-native-flux with react-drawer

how do i use react-native-router-flux with react-native-drawer. i use version 3.38.0 for react-native-router-flux. I try to call Actions.refresh({key: 'drawer', open: value => !value }); but it doesn't work.Here is my code for my…
Chuks ben
  • 75
  • 2
  • 7
0
votes
0 answers

Flatlist + React Native Router Flux: slow navigate transition

I have a datasource with more than 800 entries which I'm using FlatList to render it. Each renderItem receives a function to navigate to another screen on item press. The problem is that the transition between screens is extremely slow. I noticed…
soutot
  • 3,531
  • 1
  • 18
  • 22
0
votes
1 answer

React Native Router Flux - rightButtonIconStyle

My rightIconImage is centered in the container in the navbar. I'd like it to be flush with the righthand side. (See image) I've tried adding the prop rightButtonIconStyle={{ justifyContent: 'flex-end' }} to the scene however this has no effect. I…
Carl Wirkus
  • 523
  • 1
  • 8
  • 19
0
votes
0 answers

Hide tabBar and navBar on react-native-router-flux navigation

I'm using react-native-router-flux navigation(version: ^4.0.0-beta.21) for React Native.(version: 0.48.3) The scenes are as follows:
Boky
  • 11,554
  • 28
  • 93
  • 163
0
votes
0 answers

React Native Router Styling Issue Login Form Fields Stacking Up IOS Simulator

I have a LoginForm component which if used without react-native-flux appears normal as depicted in image below. However if the same component is displayed through Router and Scene components of react-native-router-flux then all the fields stackup…
geeksal
  • 4,856
  • 3
  • 24
  • 47
0
votes
1 answer

How to make navigation inside react-native-drawer using react-native-router-flux

I have created drawer using react-native-drawer. drawer View contains ListView. Whenever click the renderRow method need to show navigation inside the drawer itself instead of top of the Welcome screen stack. Right now: Check the Screenshot…
0
votes
1 answer

How to call a function right after clicking on the back button of router-flux?

I am using react-native-router-flux version 3.38.0. When I click on the back button on the router-header, I need to call an action creator or a function. How can I do that?
farmcommand2
  • 1,418
  • 1
  • 13
  • 18
0
votes
0 answers

cannot get fix react-native-router-flux error even after uninatsalling it

I am using react-native 0.47.1. I was playing around different versions of react-native-router-flux. Long story short, I messed things up and started to get an error while running the app. Then decided to uninstall the router-flus to start it from…
farmcommand2
  • 1,418
  • 1
  • 13
  • 18
0
votes
1 answer

Navigation in react native router flux

I have this configuration of the routers in my app --
Mayank Baiswar
  • 605
  • 6
  • 20
0
votes
2 answers

I want to show Icon on rightButtonImage by react-native-vector icon and react-native-router-flux

I want to show right button on navigation var, but nothing rendered. Please give me solution or some advice. Error ExceptionsManager.js:73 Warning: Cannot update during an existing state transition (such as within render or another component's…
hiroga
  • 722
  • 9
  • 17
0
votes
1 answer

how do I dynamically render title as component

I have a scene: In which I use the component to display the "title". This function: const level = () => { return ( ) } This component: export class Level extends…
0
votes
1 answer

Access component state when user is going to previous scene

react-native-router-flux version: 3.39.1 Hi, i need to access to component state when the user clicks on Back button of navbar to go to previous scene . Is there a way of doing this ? i need this to verify the state if the user did some working on…
Flavio_Lima
  • 155
  • 10
0
votes
1 answer

Accessing flag in react native router flux scene

I have a scene called places.js and in that I have passed props for a flag I set up. With two scenes cities.js and countries.js, I have no problem passing the props to them individually. However, I have setup these two scenes to be in tabs using…
S. Sinha
  • 165
  • 1
  • 7
0
votes
1 answer

Pop out from the stack Navigation on react-native-router-flux

This is my Router navigation setup. I navigated from EmployeeList to EmployeeCreate component. I want to back to the EmployeeList when I click a Create Button.
0
votes
1 answer

How can I make the custom navigation bar transparent in RNRF

I have tried all the options in react-native-router-flux like: navigationBarStyle or navTransparent and also navigationBarStyle={[STYLES.navBar]} all of these are not working while trying to make the custom navigation bar transparent Is there any…