widthSpace method

Widget widthSpace(
  1. double value
)

Creates a SizedBox widget with a dynamic width based on the provided value.

The widthSpace method creates a SizedBox widget with a dynamic width based on the provided value.

  • value: The value representing a percentage of the initial width value.
  • Returns: A SizedBox widget with the calculated dynamic width.

Implementation

Widget widthSpace(double value) {
  return SizedBox(
    width: width(value),
  );
}