官术网_书友最值得收藏!

  • React Native Blueprints
  • Emilio Rodriguez Martinez
  • 304字
  • 2021-07-02 15:19:58

Setting up the folder structure

Our app only comprises of two screens: Shopping List and Add Products. Since the state for such a simple app should be easy to manage, we won't add any library for state management (for example, Redux), as we will send the shared state through the navigation component. This should make our folder structure rather simple:

We have to create an src folder where we will store all our React code. The self-created file index.js will have the following code:

/*** index.js ***/

import { AppRegistry } from 'react-native';
import App from './src/main';
AppRegistry.registerComponent('GroceriesList', () => App);

In short, these files will import the common root code for our app, store it in a variable named App and later pass this variable to the AppRegistry through the registerComponent method. AppRegistry is the component to which we should register our root components. Once we do this, React Native will generate a JS bundle for our app and then run the app when it's ready by invoking AppRegistry.runApplication.

Most of the code we will be writing, will be placed inside the src folder. For this app, we will create our root component (main.js) in this folder, and a screens subfolder, in which we will store our two screens (ShoppingList and AddProduct).

Now let's install all the initial dependencies for our app before continue coding. In our project's root folder, we will need to run the following command:

npm install

Running that command will install all the basic dependencies for every React Native project. Let's now install the three packages we will be using for this specific app:

npm install native-base --save
npm install react-native-prompt-android --save
npm install react-navigation --save

Further ahead in this chapter, we will explain what each package will be used for.

主站蜘蛛池模板: 奉化市| 广安市| 棋牌| 深州市| 孟连| 天柱县| 鹰潭市| 桐梓县| 弥渡县| 三明市| 丰原市| 德令哈市| 衡阳县| 哈巴河县| 新丰县| 双江| 土默特右旗| 察隅县| 吐鲁番市| 浦江县| 长沙市| 蕉岭县| 沙洋县| 昌邑市| 大埔县| 安丘市| 华宁县| 京山县| 大庆市| 承德县| 凌海市| 体育| 达孜县| 荔浦县| 建湖县| 花莲市| 林州市| 保康县| 化德县| 夹江县| 辽宁省|