BottomNavBar constructor

BottomNavBar({
  1. Color? activeColor,
  2. Color? backgroundColor,
  3. GapLocation? gapLocation,
  4. double height = 64,
  5. IndexedWidgetBuilder? itemBuilder,
  6. List<BottomNavItem>? items,
  7. Key? key,
})

Implementation

BottomNavBar({
  Color? activeColor,
  Color? backgroundColor,
  GapLocation? gapLocation,
  double height = 64,
  IndexedWidgetBuilder? itemBuilder,
  List<BottomNavItem>? items,
  Key? key,
}) : this._internal(
        activeColor: activeColor,
        backgroundColor: backgroundColor,
        height: height,
        gapLocation: gapLocation,
        items: items,
        itemBuilder: _defaultBuilder(items),
        key: key,
      );