diff --git a/docs/src/components/tutorials/flutter-todos/EditTodosPageTreeSnippet.astro b/docs/src/components/tutorials/flutter-todos/EditTodosPageTreeSnippet.astro index fb88b5a0ffd..d1078519f7e 100644 --- a/docs/src/components/tutorials/flutter-todos/EditTodosPageTreeSnippet.astro +++ b/docs/src/components/tutorials/flutter-todos/EditTodosPageTreeSnippet.astro @@ -2,10 +2,10 @@ import { Code } from '@astrojs/starlight/components'; const code = ` -├── BlocProvider -│ └── EditTodosPage -│ └── BlocListener -│ └── EditTodosView +├── BlocProvider +│ └── EditTodoPage +│ └── BlocListener +│ └── EditTodoView │ ├── TitleField │ ├── DescriptionField │ └── Floating Action Button diff --git a/docs/src/content/docs/ar/tutorials/flutter-todos.mdx b/docs/src/content/docs/ar/tutorials/flutter-todos.mdx index 3f1c1aa09b5..57573cba9d6 100644 --- a/docs/src/content/docs/ar/tutorials/flutter-todos.mdx +++ b/docs/src/content/docs/ar/tutorials/flutter-todos.mdx @@ -771,12 +771,12 @@ repository. title="lib/edit_todo/view/edit_todo_page.dart" /> -تمامًا مثل الميزات السابقة، توفر `EditTodosPage` نسخة من `EditTodosBloc` عبر -`BlocProvider`. على عكس الميزات الأخرى، صفحة `EditTodosPage` هي مسار منفصل ولهذا +تمامًا مثل الميزات السابقة، توفر `EditTodoPage` نسخة من `EditTodoBloc` عبر +`BlocProvider`. على عكس الميزات الأخرى، صفحة `EditTodoPage` هي مسار منفصل ولهذا توفر طريقة `static` اسمها `route`. هذا يسهل دفع الصفحة على مكدس التنقل عبر `Navigator.of(context).push(...)`. -تمثيل مبسط لشجرة Widget الخاصة بـ `EditTodosPage` هو: +تمثيل مبسط لشجرة Widget الخاصة بـ `EditTodoPage` هو: diff --git a/docs/src/content/docs/it/tutorials/flutter-login.mdx b/docs/src/content/docs/it/tutorials/flutter-login.mdx index 8bc4ef40df9..d7675da57e7 100644 --- a/docs/src/content/docs/it/tutorials/flutter-login.mdx +++ b/docs/src/content/docs/it/tutorials/flutter-login.mdx @@ -325,7 +325,7 @@ analytics e crash reporting.; Quando lo stream `status` emette `AuthenticationStatus.unknown` o `unauthenticated`, viene emesso lo `AuthenticationState` corrispondente. -Quando viene emesso `AuthenticationStatus.authenticated`, l'`AuthentictionBloc` +Quando viene emesso `AuthenticationStatus.authenticated`, l'`AuthenticationBloc` interroga l'utente tramite il `UserRepository`. ## main.dart diff --git a/docs/src/content/docs/ko/tutorials/flutter-todos.mdx b/docs/src/content/docs/ko/tutorials/flutter-todos.mdx index f96e088f662..9e6862989c8 100644 --- a/docs/src/content/docs/ko/tutorials/flutter-todos.mdx +++ b/docs/src/content/docs/ko/tutorials/flutter-todos.mdx @@ -761,13 +761,13 @@ UI가 `EditTodoSubmitted` 이벤트를 제출하면: title="lib/edit_todo/view/edit_todo_page.dart" /> -이전 기능과 마찬가지로 `EditTodosPage`는 `BlocProvider`를 통해 `EditTodosBloc` -인스턴스를 제공합니다. 다른 기능과 달리 `EditTodosPage`는 별도의 라우트이므로 +이전 기능과 마찬가지로 `EditTodoPage`는 `BlocProvider`를 통해 `EditTodoBloc` +인스턴스를 제공합니다. 다른 기능과 달리 `EditTodoPage`는 별도의 라우트이므로 `static` `route` 메서드를 노출합니다. 이를 통해 -`Navigator.of(context).push(...)`를 통해 네비게이션 스택에 `EditTodosPage`를 +`Navigator.of(context).push(...)`를 통해 네비게이션 스택에 `EditTodoPage`를 쉽게 푸시할 수 있습니다. -`EditTodosPage`의 위젯 트리를 간략하게 나타내면: +`EditTodoPage`의 위젯 트리를 간략하게 나타내면: diff --git a/docs/src/content/docs/ru/tutorials/flutter-login.mdx b/docs/src/content/docs/ru/tutorials/flutter-login.mdx index 27e4db61419..9743ffcc63f 100644 --- a/docs/src/content/docs/ru/tutorials/flutter-login.mdx +++ b/docs/src/content/docs/ru/tutorials/flutter-login.mdx @@ -324,7 +324,7 @@ import FlutterPubGetSnippet from '~/components/tutorials/FlutterPubGetSnippet.as Когда поток `status` выдает `AuthenticationStatus.unknown` или `unauthenticated`, выдается соответствующий `AuthenticationState`. -Когда выдается `AuthenticationStatus.authenticated`, `AuthentictionBloc` +Когда выдается `AuthenticationStatus.authenticated`, `AuthenticationBloc` запрашивает пользователя через `UserRepository`. ## main.dart diff --git a/docs/src/content/docs/ru/tutorials/flutter-todos.mdx b/docs/src/content/docs/ru/tutorials/flutter-todos.mdx index f0bcb7e9f6b..35d12d0ae5e 100644 --- a/docs/src/content/docs/ru/tutorials/flutter-todos.mdx +++ b/docs/src/content/docs/ru/tutorials/flutter-todos.mdx @@ -793,13 +793,13 @@ When the UI submits a `EditTodoSubmitted` event: title="lib/edit_todo/view/edit_todo_page.dart" /> -Just like with the previous features, the `EditTodosPage` provides an instance -of the `EditTodosBloc` via `BlocProvider`. Unlike the other features, the -`EditTodosPage` is a separate route which is why it exposes a `static` `route` -method. This makes it easy to push the `EditTodosPage` onto the navigation stack +Just like with the previous features, the `EditTodoPage` provides an instance +of the `EditTodoBloc` via `BlocProvider`. Unlike the other features, the +`EditTodoPage` is a separate route which is why it exposes a `static` `route` +method. This makes it easy to push the `EditTodoPage` onto the navigation stack via `Navigator.of(context).push(...)`. -A simplified representation of the widget tree for the `EditTodosPage` is: +A simplified representation of the widget tree for the `EditTodoPage` is: diff --git a/docs/src/content/docs/tr/tutorials/flutter-login.mdx b/docs/src/content/docs/tr/tutorials/flutter-login.mdx index 0dbc1ff86cf..cf9ffc2f031 100644 --- a/docs/src/content/docs/tr/tutorials/flutter-login.mdx +++ b/docs/src/content/docs/tr/tutorials/flutter-login.mdx @@ -328,7 +328,7 @@ loglamak için harikadır.; `status` stream'i `AuthenticationStatus.unknown` veya `unauthenticated` yaydığında, ilgili `AuthenticationState` yayılır. -`AuthenticationStatus.authenticated` yayıldığında, `AuthentictionBloc`, +`AuthenticationStatus.authenticated` yayıldığında, `AuthenticationBloc`, `UserRepository` aracılığıyla kullanıcıyı sorgular. ## main.dart diff --git a/docs/src/content/docs/tr/tutorials/flutter-todos.mdx b/docs/src/content/docs/tr/tutorials/flutter-todos.mdx index 041bcbf3aec..d62b2cc2799 100644 --- a/docs/src/content/docs/tr/tutorials/flutter-todos.mdx +++ b/docs/src/content/docs/tr/tutorials/flutter-todos.mdx @@ -803,13 +803,13 @@ UI bir `EditTodoSubmitted` olayı gönderdiğinde: title="lib/edit_todo/view/edit_todo_page.dart" /> -Önceki özelliklerde olduğu gibi, `EditTodosPage` `BlocProvider` aracılığıyla bir -`EditTodosBloc` örneği sağlar. Diğer özelliklerin aksine, `EditTodosPage` ayrı +Önceki özelliklerde olduğu gibi, `EditTodoPage` `BlocProvider` aracılığıyla bir +`EditTodoBloc` örneği sağlar. Diğer özelliklerin aksine, `EditTodoPage` ayrı bir route'tur, bu yüzden `static` bir `route` metodu sunar. Bu, -`Navigator.of(context).push(...)` aracılığıyla `EditTodosPage`'i navigasyon +`Navigator.of(context).push(...)` aracılığıyla `EditTodoPage`'i navigasyon yığınına eklemeyi kolaylaştırır. -`EditTodosPage` için widget ağacının basitleştirilmiş bir gösterimi: +`EditTodoPage` için widget ağacının basitleştirilmiş bir gösterimi: diff --git a/docs/src/content/docs/tutorials/flutter-login.mdx b/docs/src/content/docs/tutorials/flutter-login.mdx index c72c6043e3d..b482d0d53ba 100644 --- a/docs/src/content/docs/tutorials/flutter-login.mdx +++ b/docs/src/content/docs/tutorials/flutter-login.mdx @@ -320,7 +320,7 @@ reporting.; When the `status` stream emits `AuthenticationStatus.unknown` or `unauthenticated`, the corresponding `AuthenticationState` is emitted. -When `AuthenticationStatus.authenticated` is emitted, the `AuthentictionBloc` +When `AuthenticationStatus.authenticated` is emitted, the `AuthenticationBloc` queries the user via the `UserRepository`. ## main.dart diff --git a/docs/src/content/docs/tutorials/flutter-todos.mdx b/docs/src/content/docs/tutorials/flutter-todos.mdx index 2c83e1dbb57..de85bad53ad 100644 --- a/docs/src/content/docs/tutorials/flutter-todos.mdx +++ b/docs/src/content/docs/tutorials/flutter-todos.mdx @@ -789,13 +789,13 @@ When the UI submits a `EditTodoSubmitted` event: title="lib/edit_todo/view/edit_todo_page.dart" /> -Just like with the previous features, the `EditTodosPage` provides an instance -of the `EditTodosBloc` via `BlocProvider`. Unlike the other features, the -`EditTodosPage` is a separate route which is why it exposes a `static` `route` -method. This makes it easy to push the `EditTodosPage` onto the navigation stack +Just like with the previous features, the `EditTodoPage` provides an instance +of the `EditTodoBloc` via `BlocProvider`. Unlike the other features, the +`EditTodoPage` is a separate route which is why it exposes a `static` `route` +method. This makes it easy to push the `EditTodoPage` onto the navigation stack via `Navigator.of(context).push(...)`. -A simplified representation of the widget tree for the `EditTodosPage` is: +A simplified representation of the widget tree for the `EditTodoPage` is: diff --git a/docs/src/content/docs/uk/tutorials/flutter-todos.mdx b/docs/src/content/docs/uk/tutorials/flutter-todos.mdx index c0251eb6cc5..09f4bca88ad 100644 --- a/docs/src/content/docs/uk/tutorials/flutter-todos.mdx +++ b/docs/src/content/docs/uk/tutorials/flutter-todos.mdx @@ -784,12 +784,12 @@ bloc через `context.read`. title="lib/edit_todo/view/edit_todo_page.dart" /> -Як і з попередніми модулями, `EditTodosPage` надає екземпляр `EditTodosBloc` -через `BlocProvider`. На відміну від інших модулів, `EditTodosPage` є окремим +Як і з попередніми модулями, `EditTodoPage` надає екземпляр `EditTodoBloc` +через `BlocProvider`. На відміну від інших модулів, `EditTodoPage` є окремим маршрутом, тому він надає `static` метод `route`. Це спрощує додавання -`EditTodosPage` до стеку навігації через `Navigator.of(context).push(...)`. +`EditTodoPage` до стеку навігації через `Navigator.of(context).push(...)`. -Спрощене представлення дерева віджетів для `EditTodosPage`: +Спрощене представлення дерева віджетів для `EditTodoPage`: