hs property
SizedBox
get
hs
Eg: 20.hs -> will create sized box with 20% screen height minus height of toolbar
Implementation
SizedBox get hs => SizedBox(
height: this * (SpacerUtil.height / 100),
);
Eg: 20.hs -> will create sized box with 20% screen height minus height of toolbar
SizedBox get hs => SizedBox(
height: this * (SpacerUtil.height / 100),
);