【Flutter】解决升级Flutter3.0后出现警告Operand of null-aware operation ‘!‘ has type ‘WidgetsBinding‘ which excludes null

InterviewCoder

# 【Flutter】解决升级 Flutter3.0 后出现警告 Operand of null-aware operation ‘!‘ has type ‘WidgetsBinding‘ which excludes null

# 出现场景

Flutter SDK 升级到 3.0,运行时报以下警告。
虽然不影响程序的运行,但是看着很烦。

1
2
3
4
lib/stress_test/stress_test_page.dart:120:22: Warning: Operand of null-aware operation '!' has type 'WidgetsBinding' which excludes null.
- 'WidgetsBinding' is from 'package:flutter/src/widgets/binding.dart' ('../../develop_env/flutter_3.0/packages/flutter/lib/src/widgets/binding.dart').
WidgetsBinding.instance!.addPostFrameCallback((timeStamp) {
^

# 解决方案

这是因为在 Flutter 3.0 中,binding 的 instance 是不可为空的,所以不需要使用 !

下面有 2 种情况。

# 三方依赖库

如果是依赖的库要使用到了 Binding.instance,去 pub 上看看库的新版本有没有兼容 3.0。如果有就升级库的版本。

比如我的项目用到了 getx 4.6.1,是 Flutter 3.0 出来之前的版本。

1
2
3
4
../../develop_env/flutter_3.0/.pub-cache/hosted/pub.flutter-io.cn/get-4.6.1/lib/get_state_manager/src/simple/get_controllers.dart:96:20: Warning: Operand of null-aware operation '!' has type 'WidgetsBinding' which excludes null.
- 'WidgetsBinding' is from 'package:flutter/src/widgets/binding.dart' ('../../develop_env/flutter_3.0/packages/flutter/lib/src/widgets/binding.dart').
WidgetsBinding.instance!.removeObserver(this);
^

去 pub 上查看更新记录 (changelog),可以看到 4.6.2 兼容了 Flutter 3.0。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[4.6.5] #
Fix pub dev score

[4.6.4]
Added backward compatibility with flutter 2.

[4.6.3]
Fix SDK constraints

[4.6.2]
Added compatibility with flutter 3.0

[4.6.1]
Fix GetConnect on Flutter web

所以我们只需要将 get 的版本更改为 4.6.2 或以上即可。

1
2
3
dependencies:
# get: ^4.6.1
get: ^4.6.2

# 本地代码

如果是项目中有用到 Binding.instance,可以使用 dart 命令 dart fix --apply 自动修复,这样就会自动把 instance 后面的 ! 去掉。

1
2
3
4
5
6
7
8
9
10
11
adodeMacBook-Pro:fusion_pro wangyang$ dart fix --apply
Computing fixes in fusion_pro... 105.4s
Applying fixes... 0.0s

lib/pages/splash_page.dart
UNNECESSARY_NON_NULL_ASSERTION • 1 fix

lib/stress_test/stress_test_page.dart
UNNECESSARY_NON_NULL_ASSERTION • 1 fix

2 fixes made in 2 files.

# 关于我

Brath 是一个热爱技术的 Java 程序猿,公众号「InterviewCoder」定期分享有趣有料的精品原创文章!

InterviewCoder

非常感谢各位人才能看到这里,原创不易,文章如果有帮助可以关注、点赞、分享或评论,这都是对我的莫大支持!

评论