Scaffold(
floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat,
floatingActionButton: FloatingActionButton(
child: const Icon(Icons.add),
onPressed: (){},
),
);
Scaffold(
floatingActionButton: FloatingActionButton(
onPressed: () {
// Add your onPressed code here!
},
child: const Icon(Icons.navigation),
),
//BUTTON LOCATION
floatingActionButtonLocation: FloatingActionButtonLocation.centerFloat,
);