divider function
Widget
divider({
- double? width,
- double height = 0.6,
- Color color = Colors.grey,
- EdgeInsets? padding,
Implementation
Widget divider({double? width, double height = 0.6, Color color = Colors.grey, EdgeInsets? padding}) => Container(
margin: padding,
width: width ?? screenWidth,
height: height,
color: color,
);