您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
59 行
2.9 KiB
59 行
2.9 KiB
using System.Collections.Generic;
|
|
using Unity.UIWidgets.engine2;
|
|
using Unity.UIWidgets.material;
|
|
using Unity.UIWidgets.painting;
|
|
using Unity.UIWidgets.ui;
|
|
using Unity.UIWidgets.widgets;
|
|
using ui_ = Unity.UIWidgets.widgets.ui_;
|
|
|
|
namespace UIWidgetsSample {
|
|
public class ScrollbarSample : UIWidgetsPanel {
|
|
protected override void main()
|
|
{
|
|
ui_.runApp(new MyApp());
|
|
}
|
|
|
|
class MyApp : StatelessWidget
|
|
{
|
|
public override Widget build(BuildContext context)
|
|
{
|
|
return new WidgetsApp(
|
|
home: 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.0f, child: new Text("0")),
|
|
new Container(height: 40.0f, child: new Text("1")),
|
|
new Container(height: 40.0f, child: new Text("2")),
|
|
new Container(height: 40.0f, child: new Text("3")),
|
|
new Container(height: 40.0f, child: new Text("4")),
|
|
new Container(height: 40.0f, child: new Text("5")),
|
|
new Container(height: 40.0f, child: new Text("6")),
|
|
new Container(height: 40.0f, child: new Text("7")),
|
|
new Container(height: 40.0f, child: new Text("8")),
|
|
new Container(height: 40.0f, child: new Text("9")),
|
|
new Container(height: 40.0f, child: new Text("10")),
|
|
new Container(height: 40.0f, child: new Text("11")),
|
|
new Container(height: 40.0f, child: new Text("12")),
|
|
new Container(height: 40.0f, child: new Text("13")),
|
|
new Container(height: 40.0f, child: new Text("14")),
|
|
new Container(height: 40.0f, child: new Text("15")),
|
|
new Container(height: 40.0f, child: new Text("16")),
|
|
new Container(height: 40.0f, child: new Text("17")),
|
|
}
|
|
)
|
|
)
|
|
),
|
|
pageRouteBuilder: (settings, builder) =>
|
|
new PageRouteBuilder(
|
|
settings: settings,
|
|
pageBuilder: (Buildcontext, animation, secondaryAnimation) => builder(context)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|