This commit is contained in:
Yegor Vialov
2018-11-05 20:21:44 +02:00
parent 3cddac3dc6
commit 644f5e7fc6
2 changed files with 31 additions and 17 deletions

View File

@ -16,7 +16,9 @@ class SliderEntity extends Entity {
SliderStateWidget(
expanded: true,
),
SimpleEntityState(),
SimpleEntityState(
expanded: false,
),
],
),
);
@ -24,7 +26,9 @@ class SliderEntity extends Entity {
@override
Widget _buildStatePartForPage(BuildContext context) {
return SimpleEntityState();
return SimpleEntityState(
expanded: false,
);
}
@override