build method

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

Implementation

@override
Widget build(BuildContext context) {
  return const Flexible(
    flex: 0,
    child: IconButton(
      icon: FaIcon(
        FontAwesomeIcons.square,
        color: Colors.transparent,
      ),
      onPressed: null,
    ),
  );
}