NavigationView constructor

const NavigationView({
  1. Key? key,
  2. NavigationAppBar? appBar,
  3. NavigationPane? pane,
  4. Widget content = const SizedBox.shrink(),
})

Creates a navigation view.

Implementation

const NavigationView({
  Key? key,
  this.appBar,
  this.pane,
  this.content = const SizedBox.shrink(),
  // If more properties are added here, make sure to
  // add them to the automatic mode as well.
}) : super(key: key);