buildButton method

  1. @override
Widget buildButton(
  1. BuildContext context
)

Implementation

@override
Widget buildButton(BuildContext context) {
  return QuillToolbarIconButton(
    tooltip: tooltip(context),
    icon: Icon(
      iconData(context),
      size: iconSize(context) * iconButtonFactor(context),
    ),
    isSelected: false,
    onPressed: _sharedOnPressed,
    afterPressed: afterButtonPressed(context),
    iconTheme: iconTheme(context),
  );
}