uiDivider method

Widget uiDivider({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Color color = Colors.transparent,
})

Creates a vertical or horizontal spacer between widgets that can be hidden if necessary.

Implementation

Widget uiDivider({
  Key? key,
  double? height,
  double? width,
  Color color = Colors.transparent,
}) {
  return Container(
    key: key,
    color: color,
    height: height,
    width: width,
  );
}