The code for FAB:
floatingActionButton: FloatingActionButton(
child: Container(
width: double.infinity,
height: double.infinity,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(30),
gradient: LinearGradient(
begin: Alignment.bottomLeft,
end: Alignment.topRight,
colors: [
Color.fromRGBO(55, 59, 68, 1),
Color.fromRGBO(66, 134, 244, 1)
]),
),
child: Icon(Icons.add)),
onPressed: () => _startAddNewTransaction(context),
),
Here is the image of the FloatingActionButton