height property

double get height

Height of the CustomNavigationBar.

Implementation

static double get height {
  double padding = 0;
  if (router.context != null) {
    padding = MediaQuery.of(router.context!).padding.bottom;
    padding += CustomSafeArea.isPwa ? 25 : 0;
  }

  return 56 + padding;
}