浏览代码

Tmp store.

/main
Yuncong Zhang 5 年前
当前提交
e6f19be3
共有 3 个文件被更改,包括 10 次插入0 次删除
  1. 3
      Runtime/widgets/selectable_text.cs
  2. 4
      Runtime/widgets/transitions.cs
  3. 3
      Runtime/widgets/widget_inspector.cs

3
Runtime/widgets/selectable_text.cs


public void didChangeTextScaleFactor() {
}
public void didChangePlatformBrightness() {
}
public void didChangeLocales(List<Locale> locale) {
}

4
Runtime/widgets/transitions.cs


public class FadeTransition : SingleChildRenderObjectWidget {
public FadeTransition(Key key = null, Animation<float> opacity = null,
Widget child = null) : base(key: key, child: child) {
D.assert(opacity != null);
this.opacity = opacity;
}

float? widthFactor = null,
float? heightFactor = null
) : base(key: key, listenable: alignment) {
D.assert(alignment != null);
D.assert(child != null);
this.child = child;
this.widthFactor = widthFactor;
this.heightFactor = heightFactor;

Widget child = null) :
base(key, animation) {
D.assert(builder != null);
D.assert(animation != null);
this.builder = builder;
this.child = child;
}

3
Runtime/widgets/widget_inspector.cs


public void didChangeTextScaleFactor() {
}
public void didChangePlatformBrightness() {
}
public void didChangeLocales(List<Locale> locale) {
}

正在加载...
取消
保存