xline static method

Widget xline({
  1. Key? key,
  2. Color color = Colors.black,
  3. double height = 1,
  4. double thick = 0,
})

Div横轴分割线

Implementation

static Widget xline({
  Key? key,
  Color color = Colors.black,
  double height = 1,
  double thick = 0,
}){
  return Div(null,
    style: DivStyle(
      color: color,
      height: height,
      margin: [thick, 0],
    ),
    key: key,
  );
}