Skip to content

Commit 20b856c

Browse files
committed
update
1 parent c8742ac commit 20b856c

9 files changed

Lines changed: 15 additions & 0 deletions

File tree

dart_language/null_safety.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# 空安全
2+
3+
允许为空的方法是在类型后面加`?`,比如
4+
5+
```dart
6+
int? someValue = 30;
7+
```
8+
9+
强制指定值非空的方法是在后面加`!`,比如
10+
11+
```dart
12+
int data = someValue!;
13+
```

1_Local_Developing_Tools/1_1_Flutter_SDK_and_Android_Studio.md renamed to local_developing_tools/flutter_sdk_and_android_studio.md

File renamed without changes.
File renamed without changes.

3_Multi-Platform_Support/platform_support_of_Flutter_plugins.png renamed to multi-platforms/platform_support_of_Flutter_plugins.png

File renamed without changes.
File renamed without changes.
File renamed without changes.

testing/unit_testing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 单元测试

testing/widget_testing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 组件测试

x_Packages_and_Plugins/Project_Structure.md

Whitespace-only changes.

0 commit comments

Comments
 (0)