0

Is there a way to pass data from side-menu to central (main) screen in wix-react-native-navigation? I have some calculations in the central screen and a switch in the side-menu to change units from inch to mm. Now I want side-menu to pass data to central screen that switch was flicked and then units should be changed from inch to mm or the other way.

Rudi
  • 3
  • 2
  • Welcome to stackoverflow. Please take a minute to take the [tour], especially [ask], and [edit] your question accordingly. – jazb Nov 21 '18 at 01:18

1 Answers1

1

are you using Redux? you could save the changes made in the side menu in your reducer and access the data.

  • 1
    I thought Redux may be an overkill for the app but if it's the only option I will try it later. Thanks – Rudi Nov 21 '18 at 03:00
  • 1
    Works great. States from both screens are accessible under the reducer. – Rudi Nov 22 '18 at 21:23