Dashboard overview
This commit is contained in:
parent
87790dd0ec
commit
917c7d491c
|
|
@ -274,6 +274,7 @@ class DashboardPanels extends StatelessWidget {
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
_DashboardTotalsSettings(),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
@ -959,3 +960,21 @@ class __OverviewPanelState extends State<_OverviewPanel> {
|
||||||
return chart;
|
return chart;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class _DashboardTotalsSettings extends StatelessWidget {
|
||||||
|
const _DashboardTotalsSettings({Key key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
CheckboxListTile(
|
||||||
|
value: false,
|
||||||
|
onChanged: (value) => null,
|
||||||
|
title: Text('test'),
|
||||||
|
controlAffinity: ListTileControlAffinity.leading,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue