suffixIcons property

  1. @override
List<Widget>? get suffixIcons
override

尾部图标

Implementation

@override
List<Widget>? get suffixIcons => [
      ...?super.suffixIcons,
      if (isEnabled && !widget._readOnly)
        const Icon(Icons.keyboard_arrow_right),
    ];