blob: dca8b55bac83c3b5093fc89c577c52fad43da69f [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.dart';
import "theme.dart";
class Card extends Component {
Card({ String key, this.child, this.color }) : super(key: key);
final Widget child;
final Color color;
Widget build() {
return new Container(
margin: const EdgeDims.all(4.0),
child: new Material(
color: color,
type: MaterialType.card,
level: 2,
child: new ClipRRect(
xRadius: edges[MaterialType.card],
yRadius: edges[MaterialType.card],
child: child
)
)
);
}
}