height property

double get height

Height of the CustomAppBar.

Implementation

static double get height {
  double padding = 0;
  if (router.context != null) {
    padding = MediaQuery.of(router.context!).padding.top;
  }

  return 60 + padding;
}