Skip to content

Commit 32a32c7

Browse files
committed
update readme
1 parent 8d26f42 commit 32a32c7

File tree

1 file changed

+19
-24
lines changed

1 file changed

+19
-24
lines changed

packages/stream_chat_flutter_core/README.md

+19-24
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,7 @@ This package requires no custom setup on any platform since it does not depend o
4343

4444
This package provides business logic to fetch common things required for integrating Stream Chat into your application.
4545
The core package allows more customisation and hence provides business logic but no UI components.
46-
Please use the stream_chat_flutter package for the full fledged suite of UI components or stream_chat for the low-level client.
47-
48-
The package primarily contains three types of classes:
49-
50-
1) Business Logic Components
51-
2) Core Components
52-
3) Core Controllers
46+
Please use the `stream_chat_flutter` package for the full fledged suite of UI components or `stream_chat` for the low-level client.
5347

5448
### Business Logic Components
5549

@@ -62,23 +56,24 @@ The BLoCs we provide are:
6256

6357
### Core Components
6458

65-
Core components usually are an easy way to fetch data associated with Stream Chat which are decoupled from UI and often expose UI builders.
66-
Data fetching can be controlled with the controllers of the respective core components.
67-
68-
1) ChannelListCore (Fetch a list of channels)
69-
2) MessageListCore (Fetch a list of messages from a channel)
70-
3) MessageSearchListCore (Fetch a list of search messages)
71-
4) UserListCore (Fetch a list of users)
72-
5) StreamChatCore (This is different from the other core components - it is a version of StreamChat decoupled from theme and initialisations.)
73-
74-
### Core Controllers
75-
76-
Core Controllers are supplied to respective CoreList widgets which allows reloading and pagination of data whenever needed.
77-
78-
1) ChannelListController
79-
2) MessageListController
80-
3) MessageSearchListController
81-
4) ChannelListController
59+
In the early days of the Flutter SDK, the SDK was only split into the LLC (`stream_chat`) and
60+
the UI package (`stream_chat_flutter`). With this you could use a fully built interface with the UI package
61+
or a fully custom interface with the LLC. However, we soon recognised the need for a third intermediary
62+
package which made tasks like building and modifying a list of channels or messages easy but without
63+
the complexity of using low level components. The Core package (`stream_chat_flutter_core`) is a manifestation
64+
of the same idea and allows you to build an interface with Stream Chat without having to deal with
65+
low level code and architecture as well as implementing your own theme and UI effortlessly.
66+
Also, it has very few dependencies.
67+
68+
The package primarily contains a bunch of controller classes.
69+
Controllers are used to handle the business logic of the chat. You can use them together with our UI widgets, or you can even use them to build your own UI.
70+
71+
* StreamChannelListController
72+
* StreamUserListController
73+
* StreamMessageSearchListController
74+
* StreamMessageInputController
75+
* LazyLoadScrollView
76+
* PagedValueListenableBuilder
8277

8378
## Contributing
8479

0 commit comments

Comments
 (0)