This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/lib/cards/widgets/lovelace_card.dart
2020-04-25 14:53:33 +00:00

17 lines
265 B
Dart

part of '../../main.dart';
class LovelaceCard extends StatelessWidget {
final Widget child;
const LovelaceCard({Key key, this.child}) : super(key: key);
@override
Widget build(BuildContext context) {
return Card(
child: child,
);
}
}