You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/stream_chat_flutter_core/README.md
+19-24
Original file line number
Diff line number
Diff line change
@@ -43,13 +43,7 @@ This package requires no custom setup on any platform since it does not depend o
43
43
44
44
This package provides business logic to fetch common things required for integrating Stream Chat into your application.
45
45
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.
53
47
54
48
### Business Logic Components
55
49
@@ -62,23 +56,24 @@ The BLoCs we provide are:
62
56
63
57
### Core Components
64
58
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.
0 commit comments