| Index: sky/sdk/lib/widgets/floating_action_button.dart
|
| diff --git a/sky/sdk/lib/widgets/floating_action_button.dart b/sky/sdk/lib/widgets/floating_action_button.dart
|
| index 8b3952ab434a77594c9f003108a442878e1a823f..58b4790df14b3fbf8e2ea548d1e5ff07d001c689 100644
|
| --- a/sky/sdk/lib/widgets/floating_action_button.dart
|
| +++ b/sky/sdk/lib/widgets/floating_action_button.dart
|
| @@ -2,12 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -import '../theme/colors.dart';
|
| import '../theme/edges.dart';
|
| import 'basic.dart';
|
| import 'button_base.dart';
|
| import 'ink_well.dart';
|
| import 'material.dart';
|
| +import 'theme.dart';
|
|
|
| // TODO(eseidel): This needs to change based on device size?
|
| // http://www.google.com/design/spec/layout/metrics-keylines.html#metrics-keylines-keylines-spacing
|
| @@ -32,7 +32,7 @@ class FloatingActionButton extends ButtonBase {
|
|
|
| Widget buildContent() {
|
| return new Material(
|
| - color: Red[500],
|
| + color: Theme.of(this).accent[200],
|
| edge: MaterialEdge.circle,
|
| level: highlight ? 3 : 2,
|
| child: new ClipOval(
|
|
|