fab function
Implementation
Widget fab(Function onPressed) {
return FloatingActionButton(
backgroundColor: Colors.red,
elevation: 10,
onPressed: () {
onPressed();
//navigateToDetail(Profile(), 'Add Profile');
},
tooltip: 'Add',
child: Icon(
Icons.add,
color: Colors.white,
),
);
}