yline static method

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

Div纵轴分割线

Implementation

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