logout button

This commit is contained in:
marcoabat
2023-08-05 15:44:10 +02:00
parent 1eb1caa167
commit 4d8f66bbde
2 changed files with 10 additions and 0 deletions

View File

@@ -26,6 +26,12 @@ class _DashboardPageState extends State<DashboardPage> {
Widget build(BuildContext context) {
checklistProvider = Provider.of<ChecklistProvider>(context, listen: true);
return Scaffold(
appBar: AppBar(actions: [
IconButton(
onPressed: () => DbHelper.logout(),
icon: const Icon(Icons.logout),
)
]),
body: FutureBuilder(
future: checklistFuture,
builder: _futureBuilder,