Passing Data Between Screens in React Native
I am creating a Simple App in which I demonstrate how we can use data from one page to another. React Native Router Flux is the navigation tool. This App is just to understand the basic concept of using React Native Router Flux that passing data by clicking on Button and get it to another page. In this blog, I also show how to get data from Input and passes it to another screen. I am using React Native Version 56 which is the current version . To install React Native you can refer to this link below: https://facebook.github.io/react-native/ Let's start building an App 1. Create React Native App: react-native init MyApp(App Name) Or For Specific Version: react-native init MyApp(App Name) --version 0.46.1 2. Run React Native App: cd MyApp react-native run-android 3. After running react-native run-android , you will see your new app running in your Android emulator look like this 4. I nstall React Native Router Flux For fur...