> For the complete documentation index, see [llms.txt](https://emrade.gitbook.io/mi-notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://emrade.gitbook.io/mi-notes/the-app/adding-screens.md).

# Adding Screens

### Creating Screen Files <a href="#creating-screen-files" id="creating-screen-files"></a>

Adding a new screen can be done in a couple of steps

* Create a new folder, say `new_page` and place it under `/lib/views/` .
* Create a new file `new_page.dart` within this folder.

```
class NewPage extends StatelessWidget {
    . . .
    . . .
}
```
