| Index: sky/examples/fn/widgets/floating_action_button.dart
|
| diff --git a/sky/examples/fn/widgets/floating_action_button.dart b/sky/examples/fn/widgets/floating_action_button.dart
|
| index d40e74cf313c2688e4f85e5b83541ab77443d671..cdb446b46e95a41f9f7309046eb595bd00ee3a66 100644
|
| --- a/sky/examples/fn/widgets/floating_action_button.dart
|
| +++ b/sky/examples/fn/widgets/floating_action_button.dart
|
| @@ -1,6 +1,10 @@
|
| part of widgets;
|
|
|
| class FloatingActionButton extends StyleComponent {
|
| +
|
| + // TODO(rafaelw): Ganesh has problems with box shadows
|
| + // box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
| +
|
| static final Style _style = new Style('''
|
| position: absolute;
|
| display: flex;
|
| @@ -12,8 +16,7 @@ class FloatingActionButton extends StyleComponent {
|
| height: 56px;
|
| background-color: #F44336;
|
| color: white;
|
| - border-radius: 28px;
|
| - box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);'''
|
| + border-radius: 28px;'''
|
| );
|
|
|
| Style get style => _style;
|
|
|