Published on

Mobile Navigation with Flutter

Authors
  • avatar
    Name
    Loi Tran
    Twitter

Introduction

preview

Most applications make use of the following navigators in some form.

  • Drawer Navigator
  • Tab Navigator
  • Stack Navigator

The hard part is using them together seamlessly where accompanying widgets behave as we expect. For example:

  • Replacement of the header on certain screens can be done.
  • Back button displays when we've added a screen on the stack.
  • Navigation state on different tabs are maintained across toggling of screens.