Dashboard overview

This commit is contained in:
Hillel Coren 2022-08-11 17:16:36 +03:00
parent 87790dd0ec
commit 917c7d491c
1 changed files with 19 additions and 0 deletions

View File

@ -274,6 +274,7 @@ class DashboardPanels extends StatelessWidget {
],
),
],
_DashboardTotalsSettings(),
],
),
);
@ -959,3 +960,21 @@ class __OverviewPanelState extends State<_OverviewPanel> {
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,
)
],
);
}
}