Skip to content

Commit

Permalink
✨ chore(docs): Update README.md with more descriptive text and correc…
Browse files Browse the repository at this point in the history
…t formatting errors

Signed-off-by: Dmytro Turskyi <[email protected]>
  • Loading branch information
Turskyi committed Aug 8, 2024
1 parent 3eb7743 commit c71f4fe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Onion Architecture, originally introduced by
[Jeffrey Palermo](https://jeffreypalermo.com/about/) in his article
[The Onion Architecture](https://jeffreypalermo.com/2008/07/the-onion-architecture-part-1/).

The default counter app is often criticized for its simplicity and lack of
The default "counter" app is often criticized for its simplicity and lack of
real-world applicability. This example showcases a more maintainable and
scalable approach, incorporating immutability, dependency injection, and
reactive state management
Expand All @@ -38,7 +38,7 @@ The project follows the four main layers of Onion Architecture:
### Domain Model Layer

Contains the `Counter` entity. This layer does not depend on anything else,
which is evident from the imports in the class.
which is clear from the imports in the class.

### Domain Services Layer

Expand Down Expand Up @@ -78,13 +78,13 @@ The simplified structure of the project is as follows:
```
lib/
├── main.dart
├── core/
│ ├── application_services/
│ └── domain/
│ ├── model/
│ └── services/
├── user_interface/
├── infrastructure/
└── user_interface/
└── core/
├── application_services/
└── domain/
├── model/
└── services/
```

## Getting Started
Expand Down

0 comments on commit c71f4fe

Please sign in to comment.