您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
47 行
1.4 KiB
47 行
1.4 KiB
using Unity.UIWidgets.foundation;
|
|
using Unity.UIWidgets.painting;
|
|
using Unity.UIWidgets.ui;
|
|
using Unity.UIWidgets.widgets;
|
|
|
|
namespace Unity.UIWidgets.material {
|
|
public class Divider : StatelessWidget {
|
|
public Divider(
|
|
Key key = null,
|
|
float height = 16.0f,
|
|
float indent = 0.0f,
|
|
Color color = null) : base(key: key) {
|
|
D.assert(height >= 0.0);
|
|
this.height = height;
|
|
this.indent = indent;
|
|
this.color = color;
|
|
}
|
|
|
|
public readonly float height;
|
|
|
|
public readonly float indent;
|
|
|
|
public readonly Color color;
|
|
|
|
public static BorderSide createBorderSide(BuildContext context, Color color = null, float width = 0.0f) {
|
|
return new BorderSide(
|
|
color: color ?? Theme.of(context).dividerColor,
|
|
width: width);
|
|
}
|
|
|
|
public override Widget build(BuildContext context) {
|
|
return new SizedBox(
|
|
height: height,
|
|
child: new Center(
|
|
child: new Container(
|
|
height: 0.0f,
|
|
margin: EdgeInsets.only(indent),
|
|
decoration: new BoxDecoration(
|
|
border: new Border(
|
|
bottom: createBorderSide(context, color: color))
|
|
)
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|