您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
87 行
2.8 KiB
87 行
2.8 KiB
using System.Collections.Generic;
|
|
using Unity.UIWidgets.foundation;
|
|
using Unity.UIWidgets.painting;
|
|
using Unity.UIWidgets.rendering;
|
|
using Unity.UIWidgets.ui;
|
|
using Unity.UIWidgets.widgets;
|
|
|
|
namespace UIWidgets.Tests {
|
|
public class MouseHoverWidget : StatefulWidget {
|
|
public MouseHoverWidget(Key key = null) : base(key) {
|
|
}
|
|
|
|
public override State createState() {
|
|
return new _MouseHoverWidgetState();
|
|
}
|
|
}
|
|
|
|
class _MouseHoverWidgetState : State<MouseHoverWidget> {
|
|
public static Widget createRow(bool canHover = true, bool nest = false) {
|
|
Widget result = new Container(width: 200, height: 60, color: Color.fromARGB(255, 255, 0, 255));
|
|
if (canHover) {
|
|
result = new HoverTrackWidget(null,
|
|
result);
|
|
}
|
|
|
|
if (nest) {
|
|
result = new Container(child: result, padding: EdgeInsets.all(40),
|
|
color: Color.fromARGB(255, 255, 0, 0));
|
|
result = new HoverTrackWidget(null,
|
|
result);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
public override Widget build(BuildContext context) {
|
|
//1 131231
|
|
return new Container(
|
|
alignment: Alignment.center, color: Color.fromARGB(255, 0, 255, 0),
|
|
child: new Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: new List<Widget> {
|
|
createRow(),
|
|
createRow(false),
|
|
createRow(),
|
|
createRow(true, true),
|
|
}));
|
|
}
|
|
}
|
|
|
|
public class HoverTrackWidget : StatefulWidget {
|
|
public readonly Widget child;
|
|
|
|
public HoverTrackWidget(Key key, Widget child) : base(key) {
|
|
this.child = child;
|
|
}
|
|
|
|
public override State createState() {
|
|
return new _HoverTrackWidgetState();
|
|
}
|
|
}
|
|
|
|
class _HoverTrackWidgetState : State<HoverTrackWidget> {
|
|
bool hover;
|
|
|
|
public override Widget build(BuildContext context) {
|
|
return new Listener(child:
|
|
new Container(
|
|
forgroundDecoration: this.hover
|
|
? new BoxDecoration(color: Color.fromARGB(80, 255, 255, 255))
|
|
: null,
|
|
child: this.widget.child
|
|
),
|
|
onPointerEnter: (evt) => {
|
|
if (this.mounted) {
|
|
this.setState(() => { this.hover = true; });
|
|
}
|
|
},
|
|
onPointerLeave: (evt) => {
|
|
if (this.mounted) {
|
|
this.setState(() => { this.hover = false; });
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|