buildSpeedDial method
Implementation
Widget buildSpeedDial() {
return SpeedDial(
elevation: 2,
animatedIcon: AnimatedIcons.menu_close,
animatedIconTheme: IconThemeData(color: Colors.white),
curve: Curves.linear,
backgroundColor: MyColors.accent,
children: [
SpeedDialChild(
elevation: 2,
child: Icon(Icons.mic, color: MyColors.grey_80),
backgroundColor: MyColors.grey_20,
onTap: () {},
),
SpeedDialChild(
elevation: 2,
child: Icon(Icons.call, color: MyColors.grey_80),
backgroundColor: MyColors.grey_20,
onTap: () {},
),
],
);
}