> For the complete documentation index, see [llms.txt](https://geekyants-5.gitbook.io/flatandflatmates/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://geekyants-5.gitbook.io/flatandflatmates/mobile-app/guide.md).

# Guide

## Start Building Your App

### How to add new Screen

* Create a new folder, say `NewScreen` and place in under \``/src/screens/`.
* Create a new file `NewScreen.js`,whitin this folder.
* Name the class same as that of folder name.\
  `class NewScreen extends React.Component {`\
  `. . .` \
  `. . .`\
  `}`

### How to add Stylesheet

In the created  new file, create style sheet with `StyleSheet.create({})`

```
class NewScreen extends React.Component {
. . .
. . .
}
StyleSheet.create({
. . .
. . . 
})
```
