bottomNavbarHeight property

  1. @override
Token get bottomNavbarHeight

Default bottom navbar height (default: 64px, CSS variable: --naki-bottom-navbar-height).

Implementation

@override
Token get bottomNavbarHeight => component?.bottomNavbarHeight != null
    ? Token(
        value: component!.bottomNavbarHeight!.cssText,
        name: super.bottomNavbarHeight.name,
      )
    : super.bottomNavbarHeight;