xline static method
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,
);
}