Guide
Start Building Your App
This App guides you throughout building your app, providing the steps and procedure to customize.
Contents discussed in this section:
How to add new Component?
How to add new Stylesheet?
How to navigate between screens?
How to add new Component
Create a new folder, say
NewComponent
and place it under/lib/views/
.Create a new file
index.dart
within this folder.Name the class same as that of folder name.
How to navigate between screens
Create a file router.dart
, place it under /lib/
.
import
newly created Views into the Router Component.
Last updated