sizedBoxWidth function

SizedBox sizedBoxWidth(
  1. double width
)

sizedBoxHeight helps you to create a space between to widgets horizontally just pass any double value as the parameter Note: No child widget can be provided to this sizedBoxWidth . if you want to use child widget please refer to SizedBox

Implementation

SizedBox sizedBoxWidth(double width) => SizedBox(width: width);