您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
42 行
2.1 KiB
42 行
2.1 KiB
using System.Collections.Generic;
|
|
using Unity.UIWidgets.engine;
|
|
using Unity.UIWidgets.material;
|
|
using Unity.UIWidgets.painting;
|
|
using Unity.UIWidgets.ui;
|
|
using Unity.UIWidgets.widgets;
|
|
|
|
namespace UIWidgetsSample {
|
|
public class ScrollbarCanvas : WidgetCanvas {
|
|
protected override Widget getWidget() {
|
|
return new Container(
|
|
decoration: new BoxDecoration(
|
|
border: Border.all(color: new Color(0xFFFFFF00))
|
|
),
|
|
child: new Scrollbar(
|
|
child: new ListView(
|
|
children: new List<Widget> {
|
|
new Container(height: 40.0, child: new Text("0")),
|
|
new Container(height: 40.0, child: new Text("1")),
|
|
new Container(height: 40.0, child: new Text("2")),
|
|
new Container(height: 40.0, child: new Text("3")),
|
|
new Container(height: 40.0, child: new Text("4")),
|
|
new Container(height: 40.0, child: new Text("5")),
|
|
new Container(height: 40.0, child: new Text("6")),
|
|
new Container(height: 40.0, child: new Text("7")),
|
|
new Container(height: 40.0, child: new Text("8")),
|
|
new Container(height: 40.0, child: new Text("9")),
|
|
new Container(height: 40.0, child: new Text("10")),
|
|
new Container(height: 40.0, child: new Text("11")),
|
|
new Container(height: 40.0, child: new Text("12")),
|
|
new Container(height: 40.0, child: new Text("13")),
|
|
new Container(height: 40.0, child: new Text("14")),
|
|
new Container(height: 40.0, child: new Text("15")),
|
|
new Container(height: 40.0, child: new Text("16")),
|
|
new Container(height: 40.0, child: new Text("17")),
|
|
}
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|