From 80485b2a7f302cb6c8c29f802cb9a4a9386ef4d5 Mon Sep 17 00:00:00 2001 From: Aman Khatri Date: Mon, 6 Jan 2025 12:03:27 +0530 Subject: [PATCH] Updated incorrect file name in documentation (#11566) In the last code snippet of page `App Architecture -> Architecture case study -> UI layer` document, the last code snippet's current title is `home_viewmodel.dart` which should be `home_screen.dart`. Here's a link to the document- [UI layer | Flutter](https://docs.flutter.dev/app-architecture/case-study/ui-layer). --- src/content/app-architecture/case-study/ui-layer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/app-architecture/case-study/ui-layer.md b/src/content/app-architecture/case-study/ui-layer.md index 59986a4f14..900fb97663 100644 --- a/src/content/app-architecture/case-study/ui-layer.md +++ b/src/content/app-architecture/case-study/ui-layer.md @@ -578,7 +578,7 @@ the view wants to render. This gets at *why* the Compass app uses `Commands`. In the view's `Widget.build` method, the command is used to conditionally render different widgets. -```dart title=home_viewmodel.dart +```dart title=home_screen.dart // ... child: ListenableBuilder( listenable: [!viewModel.load!],