浏览代码

Fix some issues.

/main
Yuncong Zhang 6 年前
当前提交
827c7fc4
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 2
      Runtime/material/app_bar.cs
  2. 2
      Samples/UIWidgetsGallery/demo/contacts_demo.cs

2
Runtime/material/app_bar.cs


public override float? maxExtent {
get {
return Mathf.Max(
this.topPadding ?? 0.0f + (this.expandedHeight ?? Constants.kToolbarHeight + this._bottomHeight),
(this.topPadding ?? 0.0f) + (this.expandedHeight ?? Constants.kToolbarHeight + this._bottomHeight),
this.minExtent ?? 0.0f);
}
}

2
Samples/UIWidgetsGallery/demo/contacts_demo.cs


fit: StackFit.expand,
children: new List<Widget> {
Image.asset(
"ali_landscape.png",
"ali_landscape",
fit: BoxFit.cover,
height: _appBarHeight
),

正在加载...
取消
保存