Skip to content

Commit

Permalink
Identation
Browse files Browse the repository at this point in the history
  • Loading branch information
AGVasquez committed Jul 2, 2021
1 parent 06d45a8 commit 1899089
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,26 +63,26 @@ Keep in mind that if you do this, you'll have to **install and link** all depend
This template follows a very simple project structure:

- `src`: This folder is the main container of all the code inside your application.
- `actions`: This folder contains all actions that can be dispatched to redux.
- `assets`: Asset folder to store all images, vectors, etc.
- `components`: Folder to store any common component that you use through your app (such as a generic button)
- `constants`: Folder to store any kind of constant that you have.
- `controllers`: Folder to store all your network logic (you should have one controller per resource).
- `localization`: Folder to store the languages files.
- `navigation`: Folder to store the navigators.
- `reducers`: This folder should have all your reducers, and expose the combined result using its `index.js`
- `screens`: Folder that contains all your application screens/features.
- `Screen`: Each screen should be stored inside its folder and inside it a file for its code and a separate one for the styles and tests.
- `Screen.js`
- `Screen.styles.js`
- `Screen.test.js`
- `selectors`: Folder to store your selectors for each reducer.
- `storage`: Folder that contains the application storage logic.
- `store`: Folder to put all redux middlewares and the store.
- `test-utils`: Folder to store tests-related utilities and components.
- `theme`: Folder to store all the styling concerns related to the application theme.
- `App.js`: Main component that starts your whole app.
- `index.js`: Entry point of your application as per React-Native standards.
- `actions`: This folder contains all actions that can be dispatched to redux.
- `assets`: Asset folder to store all images, vectors, etc.
- `components`: Folder to store any common component that you use through your app (such as a generic button)
- `constants`: Folder to store any kind of constant that you have.
- `controllers`: Folder to store all your network logic (you should have one controller per resource).
- `localization`: Folder to store the languages files.
- `navigation`: Folder to store the navigators.
- `reducers`: This folder should have all your reducers, and expose the combined result using its `index.js`
- `screens`: Folder that contains all your application screens/features.
- `Screen`: Each screen should be stored inside its folder and inside it a file for its code and a separate one for the styles and tests.
- `Screen.js`
- `Screen.styles.js`
- `Screen.test.js`
- `selectors`: Folder to store your selectors for each reducer.
- `storage`: Folder that contains the application storage logic.
- `store`: Folder to put all redux middlewares and the store.
- `test-utils`: Folder to store tests-related utilities and components.
- `theme`: Folder to store all the styling concerns related to the application theme.
- `App.js`: Main component that starts your whole app.
- `index.js`: Entry point of your application as per React-Native standards.

## Splash screen customization

Expand Down

0 comments on commit 1899089

Please sign in to comment.