))
),
],
),
),
);
}
}
----
Button Widget(按钮)
Material 库中的按钮点击时默认带有...this.animationDuration,
this.minWidth,
this.height,
this.child,
}) : super(key: key);
RaisedButton:漂浮按钮,默认带有阴影和灰色背景...,点击时阴影会变大
FlatButton:扁平按钮,
OutlineButton:带边框按钮
IconButton:带图标按钮
Custom FlatButton:自定义扁平按钮
Custom RaisedButton...this.width, //图片的宽
this.height, //图片高度
this.color, //图片的混合色值
this.colorBlendMode, //混合模式
this.fit...通过 Theme 修改输入框 lable 文字颜色、提示文字颜色后(下划线已隐藏)
----
----