build method

Widget build(
  1. BuildContext context,
  2. Widget navBar
)

Builds the styled nav bar widget

Wraps the provided navBar with the appropriate styling based on the style kind.

Implementation

Widget build(BuildContext context, Widget navBar) {
  return navBar;
}