您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
36 行
980 B
36 行
980 B
using Unity.UIWidgets.foundation;
|
|
using Unity.UIWidgets.ui;
|
|
|
|
namespace Unity.UIWidgets.widgets {
|
|
public interface SizePreferred {
|
|
Size preferredSize { get; }
|
|
}
|
|
|
|
public abstract class PreferredSizeWidget : StatefulWidget, SizePreferred {
|
|
protected PreferredSizeWidget(Key key = null) : base(key: key) {
|
|
}
|
|
|
|
public virtual Size preferredSize { get; }
|
|
}
|
|
|
|
|
|
public class PreferredSize : StatelessWidget, SizePreferred {
|
|
public PreferredSize(
|
|
Key key = null,
|
|
Widget child = null,
|
|
Size preferredSize = null) : base(key: key) {
|
|
D.assert(child != null);
|
|
D.assert(preferredSize != null);
|
|
this.child = child;
|
|
this.preferredSize = preferredSize;
|
|
}
|
|
|
|
public readonly Widget child;
|
|
|
|
public Size preferredSize { get; }
|
|
|
|
public override Widget build(BuildContext context) {
|
|
return this.child;
|
|
}
|
|
}
|
|
}
|