This commit is contained in:
lama137
2023-09-28 09:02:52 +02:00
committed by Joe Küng
parent 9b3634e1cd
commit 1ff2e9da0a
7 changed files with 19 additions and 17 deletions

View File

@@ -10,10 +10,16 @@ class InboxView extends StatefulWidget {
class _InboxViewState extends State<InboxView> {
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Icon(Icons.inbox),
)
return Scaffold(
appBar: AppBar(
title: const Text('Inbox'),
),
floatingActionButton: FloatingActionButton(
onPressed: () {
},
child: Icon(Icons.add),
),
);
}
}

View File

@@ -13,7 +13,9 @@ class _NotesViewState extends State<NotesView> {
return const Scaffold(
body: Center(
child: Icon(Icons.note),
)
),
);
}
}