add floating button

This commit is contained in:
Valentin CZERYBA 2024-12-07 17:10:02 +01:00
parent 1cc14277e8
commit 8c4c436241

View File

@ -394,6 +394,14 @@ class _ItemMenuState extends State<ItemMenu> with ShowErrorDialog {
], ],
) )
], ],
))); ),
),
floatingActionButton: FloatingActionButton(
onPressed: () {},
backgroundColor: Colors.blue,
tooltip: 'Recherche',
child: const Icon(Icons.edit, color: Colors.white),
),
);
} }
} }