searchClearIcon property

Widget? searchClearIcon
getter/setter pair

Implementation

Widget? searchClearIcon = ColoredBox(
  color: Colors.transparent,
  child: Container(
    alignment: Alignment.center,
    padding: const EdgeInsets.all(8),
    child: Container(
      width: 13,
      height: 13,
      child: const Icon(Icons.clear_rounded, color: Colors.white, size: 9),
      decoration: const BoxDecoration(borderRadius: BorderRadius.all(Radius.circular(6.5)), color: Color(0xFFC2C7D4)),
    ),
  ),
);