bump version
This commit is contained in:
@@ -445,8 +445,8 @@ class __SharedGroupsScreenState extends State<_SharedGroupsScreen> {
|
||||
),
|
||||
backgroundColor: StreamChatTheme.of(context).colorTheme.white,
|
||||
),
|
||||
body: FutureBuilder<List<Channel>>(
|
||||
future: chat.client.queryChannels(
|
||||
body: StreamBuilder<List<Channel>>(
|
||||
stream: chat.client.queryChannels(
|
||||
filter: {
|
||||
r'$and': [
|
||||
{
|
||||
|
||||
@@ -65,7 +65,7 @@ class _NewChatScreenState extends State<NewChatScreen> {
|
||||
if (_messageInputFocusNode.hasFocus && _selectedUsers.isNotEmpty) {
|
||||
final chatState = StreamChat.of(context);
|
||||
|
||||
final res = await chatState.client.queryChannels(
|
||||
final res = await chatState.client.queryChannelsOnline(
|
||||
options: {
|
||||
'state': false,
|
||||
'watch': false,
|
||||
|
||||
Reference in New Issue
Block a user