topNavigationLayout method

dynamic topNavigationLayout()

Implementation

SlotLayout topNavigationLayout() {
  return SlotLayout(
    config: <Breakpoint, SlotLayoutConfig?>{
      Breakpoints.smallAndUp: SlotLayout.from(
        key: const Key('LoadingIndicator'),
        builder: topNavigationWidget,
      ),
    },
  );
}