NesScaffold constructor

const NesScaffold({
  1. required Widget body,
  2. Key? key,
})

A Nes UI system scaffold widget.

Right now it doesn't replace the Scaffold widget, so we advise to use it in combination with Material's Scaffold.

That might change as we develop the library.

To interact with the NesScaffold state, use a NesScaffoldMessenger.

Implementation

const NesScaffold({
  required this.body,
  super.key,
});