blob: 40c7adb36a3a4b31707d36c40c7d93932d44d5c0 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import '../theme/colors.dart' as colors;
import 'basic.dart';
import 'material_button.dart';
import 'theme.dart';
class RaisedButton extends MaterialButton {
RaisedButton({
String key,
Widget child,
bool enabled: true,
Function onPressed
}) : super(key: key,
child: child,
enabled: enabled,
onPressed: onPressed);
Color get color {
if (enabled) {
switch (Theme.of(this).brightness) {
case ThemeBrightness.light:
if (highlight)
return colors.Grey[350];
else
return colors.Grey[300];
break;
case ThemeBrightness.dark:
if (highlight)
return Theme.of(this).primarySwatch[700];
else
return Theme.of(this).primarySwatch[600];
break;
}
} else {
return colors.Grey[350];
}
}
int get level => enabled ? (highlight ? 2 : 1) : 0;
}