We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bd36b6 commit 770f8bfCopy full SHA for 770f8bf
lib/homepage.dart
@@ -403,9 +403,6 @@ class _HomePageState extends State<HomePage> {
403
onPressed: () {},
404
child: const Text("Add"),
405
),
406
- ElevatedButton(
407
- onPressed: () => showCreateProjectDialog(),
408
- child: const Text("New")),
409
]),
410
Column(
411
children: projectsWidgets,
@@ -425,6 +422,10 @@ class _HomePageState extends State<HomePage> {
425
422
],
426
423
427
424
body: SingleChildScrollView(child: page),
+ floatingActionButton: FloatingActionButton(
+ onPressed: () => showCreateProjectDialog(),
+ child: const Icon(Icons.create_new_folder)
428
+ )
429
);
430
}
431
0 commit comments