Add Lovelase card widget

This commit is contained in:
Yegor Vialov
2020-04-25 14:53:33 +00:00
parent aee99e3925
commit 8dbfb91234
3 changed files with 27 additions and 9 deletions

View File

@ -0,0 +1,17 @@
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,
);
}
}