fab function

Widget fab(
  1. Function onPressed
)

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,
    ),
  );
}