WIP: Cards build optimization

This commit is contained in:
Yegor Vialov
2020-04-25 15:59:07 +00:00
parent 8dbfb91234
commit f488c0810b
11 changed files with 371 additions and 455 deletions

View File

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