Fix a couple Vale linter warnings

This commit is contained in:
Jeroen Leenarts
2022-12-06 15:41:05 +01:00
parent dbbb2f26be
commit a338b9b95f
67 changed files with 303 additions and 303 deletions
@@ -14,7 +14,7 @@ which allows you persist data locally which works with all packages.
### How do I choose?
#### The case for stream_chat_flutter
#### The case for `stream_chat_flutter`
For the quickest way to integrate Stream Chat with your app, the UI SDK (`stream_chat_flutter`) is the
way to go. `stream_chat_flutter` contains prebuilt components that manage most operations like data
@@ -30,26 +30,26 @@ to request this through our support channels.
<b>Summary:</b>
For the quickest and easiest way to add Chat to your app with prebuilt UI components, use stream_chat_flutter
For the quickest and easiest way to add Chat to your app with prebuilt UI components, use `stream_chat_flutter`
#### The case for stream_chat_flutter_core
#### The case for `stream_chat_flutter_core`
If your application involves UI that does not fit in with the stream_chat_flutter components, stream_chat_flutter_core
If your application involves UI that does not fit in with the `stream_chat_flutter` components, `stream_chat_flutter_core`
strips away the UI associated with the components and provides the data fetching and manipulation
capabilities while supplying builders for UI. This allows you to implement your own UI and themes
completely independently while not worrying about writing functions for data and pagination.
<b>Summary:</b>
For implementing your own custom UI while not having to worry about lower level API calls, use stream_chat_flutter_core.
For implementing your own custom UI while not having to worry about lower level API calls, use `stream_chat_flutter_core`.
#### The case for stream_chat
#### The case for `stream_chat`
The stream_chat package is the Low-level Client (LLC) of Stream Chat in Flutter. This package wraps
The `stream_chat` package is the Low-level Client (LLC) of Stream Chat in Flutter. This package wraps
the underlying functionality of Stream Chat and allows the most customization in terms of UI, data,
and architecture.
<b>Summary:</b>
For the most control over the SDK and dealing with low level calls to the API, use stream_chat.
For the most control over the SDK and dealing with low level calls to the API, use `stream_chat`.