floatingActionButton method
Widget
floatingActionButton(
- AppModel app,
- BuildContext context,
- String heroTag,
- Widget child, {
- VoidCallback? onPressed,
override
Implementation
@override
Widget floatingActionButton(
AppModel app, BuildContext context, String heroTag, Widget child,
{VoidCallback? onPressed}) {
return FloatingActionButton(
heroTag: heroTag,
foregroundColor: RgbHelper.color(
rgbo: _monaStyle
.monaStyleAttributesModel.floatingButtonForegroundColor),
backgroundColor: RgbHelper.color(
rgbo: _monaStyle
.monaStyleAttributesModel.floatingButtonBackgroundColor),
child: child,
onPressed: onPressed);
}