react-native 項目結(jié)構(gòu)規(guī)范
.
├── index.ios.js
├── index.android.js
└── src
├── component 可復(fù)用的組件(非完整頁面)
├── module 業(yè)務(wù)模塊
├── config 配置項(常量、接口地址、路由、多語言化等預(yù)置數(shù)據(jù))
├── util 工具類(非UI組件)
├── style 全局樣式
└── image 圖片
在component和module目錄中,可能還有一些內(nèi)聚度較高的模塊再建目錄
module/component
├── HomeView.component.js
├── HomeView.style.js
└── MovieView
├── MovieList.component.js
├── MovieList.style.js
├── MovieCell.component.js
├── MovieCell.style.js
├── MovieView.component.js
└── MovieView.style.js