chore(ui): update changelog

This commit is contained in:
Salvatore Giordano
2022-04-22 17:10:21 +02:00
parent 1d94731205
commit 1781f3169c
2 changed files with 8 additions and 4 deletions
@@ -486,10 +486,9 @@ class StreamMessageInputState extends State<StreamMessageInput>
@override
Widget build(BuildContext context) {
if (!StreamChannel.of(context)
.channel
.ownCapabilities
.contains(PermissionType.sendMessage)) {
final channel = StreamChannel.of(context).channel;
if (channel.state != null &&
!channel.ownCapabilities.contains(PermissionType.sendMessage)) {
return SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(
@@ -1,3 +1,8 @@
## Upcoming
- Deprecated `UsersBloc` in favor of `StreamUserListController` to control the user list.
- Deprecated `MessageSearchBloc` in favor of `StreamMessageSearchListController` to control the user list.
## 4.0.0-beta.2
- Updated `stream_chat` dependency to [`4.0.0-beta.2`](https://pub.dev/packages/stream_chat/changelog).