height property
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;
}
Height of the CustomAppBar.
static double get height {
double padding = 0;
if (router.context != null) {
padding = MediaQuery.of(router.context!).padding.top;
}
return 60 + padding;
}