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 Prevent Reload of WebView Page [Android React Native]

I have created app in which i have a 3 tabs to display webpages using React Native. Every time i switch to tab 2 from tab 1, and then back to tab 1, the webview its still working and not reload, but when i switch to tab 3, the tab 1 and 2 is…
0
votes
0 answers

react-native-router-flux issue cant get scene to change

I am trying to add a button to get to my settings component (index.js) from my home component(main screen). For some reason this is not working, I have added different screens before and copied them as an example but I am not having any luck with…
Emil Juboori
  • 199
  • 2
  • 4
  • 12
0
votes
0 answers

React Native Router Flux - Move navbar above tabs (Android)?

I have a Tabbed Navigation scene coded like so: On Android, this generates a view with…
Funktr0n
  • 1,711
  • 2
  • 16
  • 23
0
votes
1 answer

RNRF and displaying a scene based on redux store state

I've got a app that has a collection of scenes, and make many calls to a remote server that because they control hardware can take quite a while. In my redux store I have a variable that represents if there are any requests inflight. What I'm…
Matthew Huck
  • 563
  • 1
  • 4
  • 7
0
votes
2 answers

custom font is not working in react native

After saving the fonts in my assets folder of my project I linked it by the command react-native link the links were installed and I cross checked the installation in my android>src>main>assets>fonts and everything was fine there too and I expected…
Adarsh Sreeram
  • 962
  • 10
  • 22
0
votes
1 answer

Navigation with modal and drawer

I'm using react-native-router-flux for navigation in my react-native app. I've got this in my router.js file -- render() { return (
Mayank Baiswar
  • 605
  • 6
  • 20
0
votes
2 answers

Multiple instance of scene react-native-router-flux

I am having issue with react-native-router-flux, the problem is that suppose in a single module if there are 3 scenes I am navigating from scene1 -> scene2 and scene2->scene3 further scene3->scene2 again scene2->scene3 and now press on back button.…
0
votes
2 answers

react-native-router-flux Calling Actions from function

This is my currently working login page. Everything works fine import React, { Component } from 'react'; import {AlertIOS , StyleSheet , View , Text} from 'react-native'; import Button from 'react-native-button'; import {Actions } from…
Musti
  • 27
  • 4
0
votes
1 answer

_reactNativeRouterFlux.Actions.create is not a function

I'm using React Native with Redux and React Native Router Flux but I'm getting the following error "_reactNativeRouterFlux.Actions.create is not a function" I followed the docs on the correct setup not sure what's going on routes reducer import {…
Almog
  • 2,639
  • 6
  • 30
  • 59
0
votes
0 answers

How to override react component with predefined properties?

I'm developing react-native app and want to predefine styles for header in Scene component (From react-native-router-flux) Here is my modalScene.js export default class ModalScene extends React.Component { constructor (props) { super(props) …
IC_
  • 1,624
  • 1
  • 23
  • 57
0
votes
1 answer

How to change from react router flux too react-navigation

I have just began to learn react native however id like to add drawer navigator for the application however I do not know how I would be able to implement it into my current app. Any changes to go towards react-navigation have just broken it beyond…
0
votes
1 answer

React Native trying to change the required image based on title

what I am trying to do is create a dynamic function to change the required image based on what the title is. I have tried if statements with no success, though i am still new to react native, and i believe switch cases are hard if not possible in…
RandomC
  • 3
  • 6
0
votes
1 answer

react-native Router flux

for index.android.js 1. import { Router, Scene } from 'react-native-router-flux'; than I get an error adding, Can there be help ? Thank you
0
votes
2 answers

How to access prop passed to first tab in other tabs in react-native-router-flux?

I have a Router of react-native-router-flux and configured among others two tabs:
schingeldi
  • 870
  • 2
  • 14
  • 26
0
votes
1 answer

Refresh overview scene after changing state in another scene with react / redux / react-native-router-flex

Most simplified working example provided in github !!! I have a simple app to learn building apps with react native and redux. From my understanding if you display data from the redux state in your render method and then values of this state is…
schingeldi
  • 870
  • 2
  • 14
  • 26