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

docs: add Korean README #1006

Merged
merged 3 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Language: [English](README.md) | [Português](translation/pt-BR/README.md) | [Chinese](translation/zh-CN/README.md) | [Japanese](translation/ja-JP/README.md)
Language: [English](README.md) | [Português](translation/pt-BR/README.md) | [Chinese](translation/zh-CN/README.md) | [Japanese](translation/ja-JP/README.md) | [한국어](translation/ko-KR/README.md)

# mobx.dart

Expand Down Expand Up @@ -229,7 +229,7 @@ MobX.dart handles asynchronous actions automatically and does not require wrappi
String stuff = '';

@observable
loading = false;
bool loading = false;

@action
Future<void> loadStuff() async {
Expand Down
4 changes: 2 additions & 2 deletions translation/ja-JP/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
言語: [英語](../../README.md) | [ポルトガル語](../pt-BR/README.md) | [中国語](../zh-CN/README.md) | [日本語](README.md)
言語: [英語](../../README.md) | [ポルトガル語](../pt-BR/README.md) | [中国語](../zh-CN/README.md) | [日本語](README.md) | [韓国語](translation/ko-KR/README.md)

# mobx.dart

Expand Down Expand Up @@ -198,7 +198,7 @@ MobX.dart は非同期アクションを自動的に処理し、[`runInAction`](
String stuff = '';

@observable
loading = false;
bool loading = false;

@action
Future<void> loadStuff() async {
Expand Down
Loading
Loading