Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update flutter-for-ios.md #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flutter-for-ios.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Text(
);
```

阅读上面的代码,你可能会注意到 `Text` widget 并不显示地携带任何状态。它通过传入给它的构造器的数据来渲染,除此之外再无其他。
阅读上面的代码,你可能会注意到 `Text` widget 并不显式地携带任何状态。它通过传入给它的构造器的数据来渲染,除此之外再无其他。

但是,如果你希望 `I like Flutter `在点击 `FloatingActionButton` 时动态的改变呢?

Expand Down