Skip to content
This repository was archived by the owner on Apr 29, 2021. It is now read-only.

Commit 265f971

Browse files
author
Yuncong Zhang
committed
[Cupertino] Fix some accidental changes in samples.
1 parent e235a17 commit 265f971

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Samples/UIWidgetsGallery/demo/animation/home.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ float _indicatorOpacity(int index) {
340340
);
341341
}
342342

343-
protected internal override Widget build(BuildContext context) {
343+
protected override Widget build(BuildContext context) {
344344
return new LayoutBuilder(builder: this._build);
345345
}
346346
}

Samples/UIWidgetsGallery/demo/material/backdrop_demo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public BackdropTitle(
222222
) : base(key: key, listenable: listenable) {
223223
}
224224

225-
protected internal override Widget build(BuildContext context) {
225+
protected override Widget build(BuildContext context) {
226226
Animation<float> animation = (Animation<float>) this.listenable;
227227
return new DefaultTextStyle(
228228
style: Theme.of(context).primaryTextTheme.title,

Samples/UIWidgetsGallery/gallery/backdrop.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public _CrossFadeTransition(
9595
public readonly Widget child0;
9696
public readonly Widget child1;
9797

98-
protected internal override Widget build(BuildContext context) {
98+
protected override Widget build(BuildContext context) {
9999
Animation<float> progress = this.listenable as Animation<float>;
100100

101101
float opacity1 = new CurvedAnimation(

0 commit comments

Comments
 (0)