stack property

Iterable<Widget> get stack
inherited

Current navigation stack as an iterable of widgets.

Each widget represents a 'page' within this module's internal navigation.

Implementation

Iterable<Widget> get stack => _stack.map((m) => m.widget);