ws property
SizedBox
get
ws
Eg: 20.ws -> will create sized box with 20% screen width
Implementation
SizedBox get ws => SizedBox(
width: this * (SpacerUtil.width / 100),
);
Eg: 20.ws -> will create sized box with 20% screen width
SizedBox get ws => SizedBox(
width: this * (SpacerUtil.width / 100),
);