maxIndicatorModal function

Widget maxIndicatorModal({
  1. Color? color,
})

Implementation

Widget maxIndicatorModal({Color? color}) {
  return Align(
    alignment: Alignment.center,
    child: Container(
      margin: const EdgeInsets.symmetric(vertical: 8),
      width: 40,
      height: 8,
      decoration: maxRoundedDecoration(color: color ?? Colors.grey.shade200),
    ),
  );
}