-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
c: proposalA detailed proposal for a change to FlutterA detailed proposal for a change to Flutterframeworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.r: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version
Description
There's some places where nullable values are compared to bools e.g.:
editable.dart:
if (selectionEnabled && selection?.isValid == true) {editable_text.dart:
return widget.selectionEnabled && copyEnabled && _hasFocus && controls?.canCopy(this) == truetext_selection.dart:
if (widget.visibility?.value != false) {There's a lint for this that could be enabled: use_if_null_to_convert_nulls_to_bools.
Metadata
Metadata
Assignees
Labels
c: proposalA detailed proposal for a change to FlutterA detailed proposal for a change to Flutterframeworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.r: fixedIssue is closed as already fixed in a newer versionIssue is closed as already fixed in a newer version