| Index: sky/framework/components/floating_action_button.dart
|
| diff --git a/sky/framework/components/floating_action_button.dart b/sky/framework/components/floating_action_button.dart
|
| index 0fe36f3e466c31a9985b6c3a15eaac4217c0cc89..3d548d3ba843e8ac04e13e34797ff3034618be8e 100644
|
| --- a/sky/framework/components/floating_action_button.dart
|
| +++ b/sky/framework/components/floating_action_button.dart
|
| @@ -41,9 +41,10 @@ class FloatingActionButton extends Component {
|
| if (content != null)
|
| children.add(content);
|
|
|
| - return new Container(
|
| - style: level > 0 ? _style.extend(Material.shadowStyle[level]) : _style,
|
| - children: [new StyleNode(new InkWell(children: children), _clipStyle)]
|
| - );
|
| + return new Material(
|
| + content: new Container(
|
| + style: _style,
|
| + children: [new StyleNode(new InkWell(children: children), _clipStyle)]),
|
| + level: level);
|
| }
|
| }
|
|
|