From 6c5c5924711725f5cbb97b0f1a484698d3acf1fe Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 1 Mar 2025 17:04:33 -0600 Subject: [PATCH] add button --- web/repertory/lib/main.dart | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/repertory/lib/main.dart b/web/repertory/lib/main.dart index 491fd54c..59cc720b 100644 --- a/web/repertory/lib/main.dart +++ b/web/repertory/lib/main.dart @@ -45,6 +45,11 @@ class _MyHomePageState extends State { create: (context) => MountList(), child: MountListWidget(), ), + floatingActionButton: FloatingActionButton( + onPressed: () {}, + tooltip: 'Add', + child: const Icon(Icons.add), + ), ); } }