16
7
PREFER specifying a tooltip for an icon button for accessibility.
IconButton( icon: Icon(Icons.add), onPressed: () {}, )
IconButton( tooltip: 'Add', icon: Icon(Icons.add), onPressed: () {}, )
To enable the specify_icon_button_tooltip rule, add specify_icon_button_tooltip under custom_lint > rules in your analysis_options.yaml file:
specify_icon_button_tooltip
analysis_options.yaml
custom_lint: rules: - specify_icon_button_tooltip