diff --git a/src/content/app-architecture/case-study/index.md b/src/content/app-architecture/case-study/index.md index 49cf914dcd..d2bfde7d66 100644 --- a/src/content/app-architecture/case-study/index.md +++ b/src/content/app-architecture/case-study/index.md @@ -84,45 +84,45 @@ The following is how the code is organized within the Compass application. ```plaintext lib -|____ui -| |____core -| | |____ui -| | | |____ -| | |____themes -| |____ -| | |____view_model -| | | |_____.dart -| | |____widgets -| | | |_____screen.dart -| | | |____ -|____domain -| |____models -| | |____.dart -|____data -| |____repositories -| | |____.dart -| |____services -| | |____.dart -| |____model -| | |____.dart -|____config -|____utils -|____routing -|____main_staging.dart -|____main_development.dart -|____main.dart +├─┬─ ui +│ ├─┬─ core +│ │ ├─┬─ ui +│ │ │ └─── +│ │ └─── themes +│ └─┬─ +│ ├─┬─ view_model +│ │ └─── .dart +│ └─┬─ widgets +│ ├── _screen.dart +│ └── +├─┬─ domain +│ └─┬─ models +│ └─── .dart +├─┬─ data +│ ├─┬─ repositories +│ │ └─── .dart +│ ├─┬─ services +│ │ └─── .dart +│ └─┬─ model +│ └─── .dart +├─── config +├─── utils +├─── routing +├─── main_staging.dart +├─── main_development.dart +└─── main.dart // The test folder contains unit and widget tests test -|____data -|____domain -|____ui -|____utils +├─── data +├─── domain +├─── ui +└─── utils // The testing folder contains mocks other classes need to execute tests testing -|____fakes -|____models +├─── fakes +└─── models ``` Most of the application code lives in the