xLayout_FloatingAddBTN method
Da overridare per Modificare il Widget del Bottone di Add che si trova nel FloatingActionButton della Scheda
Implementation
Widget xLayout_FloatingAddBTN(XBottomNavigationBarItem xbtnBarItem) {
return XBtnbase(
margin: EdgeInsets.only(bottom: 20),
width: 50,
height: 50,
radiusBorder: 10,
toolTip_Message: "${xbtnBarItem.label}",
icon_Widget: xbtnBarItem.icon,
icon_WidthArea: 50,
icon_Color: xbtnBarItem.backgroundColor ?? widget.title_Color,
backGroundColor: Colors.grey[800]!.withAlpha(150),
onPressed: () async => xBottomBarAction_OnTap_INTERNAL(0, setState),
);
}