whiteContainer static method

Widget whiteContainer()

Creates a simple white container widget.

Returns an empty Container with a white background color.

Implementation

static Widget whiteContainer() {
  return Container(color: Colors.white);
}