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

React Native: How to add two Actions to a button ?

I have a small problem. I want to pass down two Actions to a Button, but I can't seem to figure it out. I am using the react-native-router-flux library. I tried something like this, but It doesn't really work. If anyone could help that would be…
0
votes
1 answer

react-native-router-flux -- adding back button and menu list

In react-native-router-flux i wanna to add left, right and title, left button to go back to previous scene and right button for menu and title. how to do this?
Prasanna
  • 347
  • 1
  • 7
  • 22
0
votes
1 answer

How to have custom component as title of NavBar in react-native-router-flux?

By default, I can only have a single line of text in the title of the NavBar with react-native-router-flux. I want to have 2 lines of text in the title of the NavBar. Thus, how can I actually have a custom component as the title of the NavBar in…
Carven
  • 14,988
  • 29
  • 118
  • 161
0
votes
0 answers

React native navigator consuming too much memory

I'm building my first react native android project that has a nested navigation of the scenes. My current code is working, however it seems that the memory is suffering a lot. Please see attached illustration of the problem. I used the…
0
votes
2 answers

react-native-router-flux: How can I retain parent navbar when switching tabs?

I currently have the following in my router:
nao
  • 1,128
  • 1
  • 14
  • 37
0
votes
2 answers

react-native-router-flux: implement animation in scene transition in react-native-router-flux

I've been using default scene change style in my react native apps with react-native-router-flux. But i'm trying to use different animation effects in scene transition between two pages. How could we do that ??
Aayush Thapa
  • 161
  • 2
  • 6
0
votes
1 answer

React native router flux - simulate android push

In react-native-router-flux, is it possible to simulate the standard Android transition where the navbar does NOT animate in from right to left when a new screen is added to the navigator stack via type PUSH? I'm not talking about using a type of…
0
votes
1 answer

React native router flux - Don't Pop to Root When Tab Item Pressed

I have an app with two tabs: Tab1 and Tab2. There are two scenes: scene1 and scene2 as part of my Tab1 group, where scene1 is the initial view. If I navigate to scene2, then press Tab2, then go back to Tab1, it automatically pops scene2 from Tab1…
brillajank
  • 43
  • 7
0
votes
1 answer
0
votes
1 answer

How to add header to react-native-router-flux tabbar?

I'm making simpe application using react-native, and its third party module react-native-router-flux for easy handling component navigator. I want to add header component above tabs which showing my app name, and selected tab name. I tried several…
ton1
  • 7,238
  • 18
  • 71
  • 126
0
votes
1 answer

react-native-router-flux refreshing component with Replace, Reset, and Refresh

So I've been using ignite CLI which includes react-native-router-flux. My question is, I'm having a data from props which will be uploaded to the database when the user press 'apply' here's the code
0
votes
3 answers

React Native Router Flux - Navigating to scene and back - conflicts with another child

I am using react-native-router-flux and am having an issue navigating between scenes and it's driving me crazy! This is my Router:
0
votes
1 answer

App Freezes after React Native Navigator is called

i'm working on my first react native app that uses the Navigator and i have encountered an issue. Anytime i press on the to make the push to the navigator, the app freezes and can't be press again. here's my code ``` import…
Kenshinman
  • 679
  • 8
  • 20
0
votes
1 answer

react-native router flux Actions is not navigating to other page

import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View, Navigator, TouchableOpacity, Image, Button } from 'react-native'; import Actions from 'react-native-router-flux'; import First from…
Prasanna
  • 347
  • 1
  • 7
  • 22
0
votes
1 answer

Render global footer in react-native-router-flux 3.x

I have an app where on all scenes I want to render a global navigation footer at the bottom of the screen. This was a very easy thing to do in RNRF 2.x with the footer prop, but I'm having quite a lot of trouble implementing it in 3.x since the…
Juuso
  • 487
  • 5
  • 12