add button

This commit is contained in:
Scott E. Graves 2025-03-01 17:04:33 -06:00
parent fbaa51f634
commit 6c5c592471

View File

@ -45,6 +45,11 @@ class _MyHomePageState extends State<MyHomePage> {
create: (context) => MountList(),
child: MountListWidget(),
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
tooltip: 'Add',
child: const Icon(Icons.add),
),
);
}
}