Skip to content

Commit

Permalink
docs: update bloc definition in the glossary (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsgalarraga authored Oct 18, 2024
1 parent cb5208f commit 59a8bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/docs/engineering/glossary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import glossaryRow from "./diagrams/glossary_row.png";

## B

- **BLoC**: Design pattern that helps the developer to separate business logic from the UI layer with a clear separation of concerns making your app more maintainable. The library flutter_bloc facilitates to implementation of this pattern in Flutter with predefined components to manage easily events and states.
- **BLoC**: Design pattern that helps the developer manage the app state and isolates the business logic from the UI layer with a clear separation of concerns, leading to a more maintainable app. The [flutter_bloc](https://pub.dev/packages/flutter_bloc) library facilitates to implementation of this pattern in Flutter with predefined components to easily manage events and states.
- **BuildContext**: A handle to the location of a widget in the widget tree. It is used to obtain references to resources and widgets.
- **Builder**: A widget that uses a callback to return a widget, useful for creating widgets based on changing state or conditions.

Expand Down

0 comments on commit 59a8bf4

Please sign in to comment.