bump version

This commit is contained in:
Salvatore Giordano
2021-02-26 18:06:38 +01:00
parent eb5a7350c8
commit 6feccd57dd
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -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': [
{
+1 -1
View File
@@ -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,
+3 -3
View File
@@ -1,7 +1,7 @@
name: example
description: A new Flutter project.
publish_to: 'none'
version: 1.3.0
version: 1.3.1
environment:
sdk: ">=2.2.2 <3.0.0"
@@ -9,8 +9,8 @@ environment:
dependencies:
flutter:
sdk: flutter
stream_chat_flutter: ^1.2.0-beta
stream_chat_persistence: ^1.2.0-beta
stream_chat_flutter: ^1.3.0-beta
stream_chat_persistence: ^1.3.0-beta
flutter_local_notifications: ^2.0.2
flutter_svg: ^0.19.1
flutter_secure_storage: ^3.3.5