This commit is contained in:
Yegor Vialov
2018-11-14 19:52:17 +02:00
parent 874410964d
commit 25bf10a64e
11 changed files with 123 additions and 10 deletions

View File

@ -88,6 +88,14 @@ class Entity {
);
}
Widget buildGlanceWidget(BuildContext context) {
return EntityModel(
entity: this,
child: GlanceEntityContainer(),
handleTap: true,
);
}
Widget _buildStatePart(BuildContext context) {
return SimpleEntityState();
}