WIP #120 Simplest on/off state history chart

This commit is contained in:
Yegor Vialov
2018-10-28 14:56:23 +02:00
parent 809c7d6355
commit 052cd3894e
8 changed files with 282 additions and 12 deletions

View File

@ -52,7 +52,10 @@ class _EntityViewPageState extends State<EntityViewPage> {
),
body: Padding(
padding: EdgeInsets.all(10.0),
child: widget.entity.buildEntityPageWidget(context)
child: HomeAssistantModel(
homeAssistant: widget.homeAssistant,
child: widget.entity.buildEntityPageWidget(context)
)
),
);
}