Chromium Code Reviews| Index: sky/sdk/lib/framework/components2/floating_action_button.dart |
| diff --git a/sky/sdk/lib/framework/components2/floating_action_button.dart b/sky/sdk/lib/framework/components2/floating_action_button.dart |
| index d660b332bc7b7b770e58c257fe169e7ec7653a68..23cf45120c00e6569cf4eaf9749d0ce499aa8bf5 100644 |
| --- a/sky/sdk/lib/framework/components2/floating_action_button.dart |
| +++ b/sky/sdk/lib/framework/components2/floating_action_button.dart |
| @@ -40,10 +40,14 @@ class FloatingActionButton extends Component { |
| paint.setDrawLooper(builder.build()); |
| canvas.drawCircle(radius, radius, radius, paint); |
| }, |
| - child: new Container( |
| - width: _kSize, |
| - height: _kSize, |
| - child: new InkWell(children: children))), |
| + child: new ClipCircle( |
|
abarth-chromium
2015/06/10 22:33:44
ClipCircle -> ClipOval?
|
| + child: new Container( |
| + width: _kSize, |
| + height: _kSize, |
| + child: new InkWell(children: children) |
| + ) |
| + ) |
| + ), |
| level: level); |
| } |