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
3
votes
0 answers

Sending Params To Child Scene in React Native Router Flux

My problem is sending param to Child Scene in React Native Router Flux. This is my Router.js :
3
votes
1 answer

React-native-router-flux Update rightButtonImage dynamically

I have my scene defined inside Router tab as follows: {}} rightButtonImage={NOTIFICATION_ICON} …
3
votes
1 answer

undefined is not a function (evaluating '_app.default.database()')

I got an error message when I tried to create a new employee (input data to firebase's database, do notice that it's not about email/password login as in from authentication tab). The problem appear only after I click the submit button (which should…
3
votes
5 answers

How to call Actions.pop() and refresh the previous scene? React Native, Redux, React-Native-Router-Flux

I want to redirect the user to the previous screen after they create a record but also refresh the previous listing screen to reflect the new record This is the function in my actions file fetch(CREATE_POST, request).then(response => { …
trurohit
  • 451
  • 1
  • 9
  • 21
3
votes
0 answers

Displaying 2 screens side by side when horizontal with react-native-router-flux (RNRF)

Currently as I am using Redux, so react-native-router-flux is a natural choice of Navigation. (I don't mind using another library if it would be easier) Problem: Imagine an iPad app, when it is vertical, there will be 3 tabs for 3 screens. When it…
3
votes
1 answer

Lazy Load screens with React Native Router Flux

There are several screens in my React Native application. I am using React Native 0.56 and React Native Router Flux. Is there a way for a screen to load all of its imports when the screen is actually needed, and not when the app is launched and…
red-devil
  • 1,064
  • 1
  • 20
  • 34
3
votes
0 answers

Error while updating property transform of a view managed by RCTView

I found this error in my android studio. after intall React-nativ-router-flux latest version for naviation, it works fine in ios environment
sritharan
  • 135
  • 1
  • 1
  • 10
3
votes
1 answer

Unable to resolve "mobx-react/native" from "node_modules/react-native-router-flux/dist/Router.js"

Im using expo. here's my package.json file { "name": "emmunize", "version": "0.1.0", "private": true, "devDependencies": { "jest-expo": "27.0.0", "react-native-scripts": "^1.14.1", "react-test-renderer":…
3
votes
2 answers

How to pass props to Actions.replace react-native-router-flux

Version Tell us which versions you are using: react-native-router-flux v4.0.0-beta.28 react-native v0.52.2 Tried the following... Actions.replace({ key: tabKey, props: tabPage }); Actions[key]({ type: ActionConst.REPLACE, tabPage: tabPage }) and…
muppet11
  • 43
  • 1
  • 7
3
votes
0 answers

react-native-router-flux navBar navTransparent does't work well on android

I am trying to set router-flux navBar transparent background, in IOS it works grate, in Android I have a very very thin white line in the bottom of the nav bar, looking like 3D/zIndex upper layer Versions react-native-router-flux:…
U.Rush
  • 398
  • 2
  • 7
3
votes
2 answers

Drawer Menu in react-native-router-flux does not show anything

I want to have a side menu in react-native using flux. However, it does not show anything. App.js const App = () => { return (
Amir Shabani
  • 690
  • 2
  • 14
  • 36
3
votes
0 answers

react-native-router-flux Actions.[scene] does not work on Android

For my react-native application I implement navigations with react-native-router-flux. I have a Drawer menu which is accessible through several different pages. On IOS everything is fine. Whereas, not all but on some android devices redirecting…
3
votes
1 answer

React Native: Getting a "there is no route key defined" error

My code is located here i am getting an error that says: There is no route defined for key employeeList. Must be one of: 'auth','main'. I checked the router.js and the this component is nested in the main scene so i am not sure what the issue is. i…
Sam Rao
  • 4,361
  • 5
  • 19
  • 21
3
votes
2 answers

React native router flux go back to root scene

In my current scene stack, I have 3 scenes A,B and C. Going back and forth from A to B to C works fine. But I couldn't navigate back to scene A directly from scene C. Is this possible? My current code looks like this:
Singh
  • 1,887
  • 3
  • 18
  • 29
3
votes
1 answer

React Native app flashing white after launch screen on iOS 11

We have more than 5 React Native apps published apps, and all app flashes to white between the launch screen and the first screen of the app. This creating wired behaviour and only noticeable on iOS 11. We are using react-native-router-flux for…