提交 a9f33ddb 编写于 作者: A Adam Barth

Merge pull request #1564 from abarth/fast_white_icons

Make it fast to draw color icons
......@@ -10,26 +10,31 @@ import 'package:sky/widgets.dart';
import 'icon.dart';
class IconButton extends StatelessComponent {
const IconButton({ Key key, this.icon, this.onPressed, this.color }) : super(key: key);
const IconButton({
Key key,
this.icon,
this.color,
this.colorFilter,
this.onPressed
}) : super(key: key);
final String icon;
final Color color;
final IconThemeColor color;
final sky.ColorFilter colorFilter;
final GestureTapCallback onPressed;
Widget build(BuildContext context) {
Widget child = new Icon(type: icon, size: 24);
if (color != null) {
child = new ColorFilter(
color: color,
transferMode: sky.TransferMode.srcATop,
child: child
);
}
return new GestureDetector(
onTap: onPressed,
child: new Padding(
child: child,
padding: const EdgeDims.all(8.0))
padding: const EdgeDims.all(8.0),
child: new Icon(
type: icon,
size: 24,
color: color,
colorFilter: colorFilter
)
)
);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册