MiNotes
  • Introduction
  • Getting Started
  • The App
    • Directory Structure
    • Adding Screens
  • Others
    • License
Powered by GitBook
On this page

Was this helpful?

  1. The App

Adding Screens

Creating Screen Files

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 {
    . . .
    . . .
}

PreviousDirectory StructureNextLicense

Last updated 3 years ago

Was this helpful?