actionButton abstract method

Widget actionButton({
  1. VoidCallback onClick,
  2. IconData? icon,
  3. String? hideLabel,
  4. String? text,
  5. ButtonSize size = ButtonSize.medium,
  6. bool quiet = false,
  7. bool selected = false,
  8. bool disabled = false,
  9. Color staticColor,
  10. Color selectedTextColor,
})

Implementation

Widget actionButton({
  VoidCallback onClick,
  IconData? icon,
  //tooltip
  String? hideLabel,
  String? text,
  ButtonSize size = ButtonSize.medium,
  //https://spectrum.adobe.com/page/action-button/#Quiet
  bool quiet = false,
  //https://spectrum.adobe.com/page/action-button/#Emphasis
  bool selected = false,
  bool disabled = false,
  //black or white
  Color staticColor,
  Color selectedTextColor,
});