浏览代码

[Cupertino] Fix some accidental changes in samples.

/main
Yuncong Zhang 5 年前
当前提交
5a85697c
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 2
      Samples/UIWidgetsGallery/demo/animation/home.cs
  2. 2
      Samples/UIWidgetsGallery/demo/material/backdrop_demo.cs
  3. 2
      Samples/UIWidgetsGallery/gallery/backdrop.cs

2
Samples/UIWidgetsGallery/demo/animation/home.cs


);
}
protected internal override Widget build(BuildContext context) {
protected override Widget build(BuildContext context) {
return new LayoutBuilder(builder: this._build);
}
}

2
Samples/UIWidgetsGallery/demo/material/backdrop_demo.cs


) : base(key: key, listenable: listenable) {
}
protected internal override Widget build(BuildContext context) {
protected override Widget build(BuildContext context) {
Animation<float> animation = (Animation<float>) this.listenable;
return new DefaultTextStyle(
style: Theme.of(context).primaryTextTheme.title,

2
Samples/UIWidgetsGallery/gallery/backdrop.cs


public readonly Widget child0;
public readonly Widget child1;
protected internal override Widget build(BuildContext context) {
protected override Widget build(BuildContext context) {
Animation<float> progress = this.listenable as Animation<float>;
float opacity1 = new CurvedAnimation(

正在加载...
取消
保存