bump version
This commit is contained in:
@@ -445,8 +445,8 @@ class __SharedGroupsScreenState extends State<_SharedGroupsScreen> {
|
|||||||
),
|
),
|
||||||
backgroundColor: StreamChatTheme.of(context).colorTheme.white,
|
backgroundColor: StreamChatTheme.of(context).colorTheme.white,
|
||||||
),
|
),
|
||||||
body: FutureBuilder<List<Channel>>(
|
body: StreamBuilder<List<Channel>>(
|
||||||
future: chat.client.queryChannels(
|
stream: chat.client.queryChannels(
|
||||||
filter: {
|
filter: {
|
||||||
r'$and': [
|
r'$and': [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -65,7 +65,7 @@ class _NewChatScreenState extends State<NewChatScreen> {
|
|||||||
if (_messageInputFocusNode.hasFocus && _selectedUsers.isNotEmpty) {
|
if (_messageInputFocusNode.hasFocus && _selectedUsers.isNotEmpty) {
|
||||||
final chatState = StreamChat.of(context);
|
final chatState = StreamChat.of(context);
|
||||||
|
|
||||||
final res = await chatState.client.queryChannels(
|
final res = await chatState.client.queryChannelsOnline(
|
||||||
options: {
|
options: {
|
||||||
'state': false,
|
'state': false,
|
||||||
'watch': false,
|
'watch': false,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
name: example
|
name: example
|
||||||
description: A new Flutter project.
|
description: A new Flutter project.
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 1.3.0
|
version: 1.3.1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.2.2 <3.0.0"
|
sdk: ">=2.2.2 <3.0.0"
|
||||||
@@ -9,8 +9,8 @@ environment:
|
|||||||
dependencies:
|
dependencies:
|
||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
stream_chat_flutter: ^1.2.0-beta
|
stream_chat_flutter: ^1.3.0-beta
|
||||||
stream_chat_persistence: ^1.2.0-beta
|
stream_chat_persistence: ^1.3.0-beta
|
||||||
flutter_local_notifications: ^2.0.2
|
flutter_local_notifications: ^2.0.2
|
||||||
flutter_svg: ^0.19.1
|
flutter_svg: ^0.19.1
|
||||||
flutter_secure_storage: ^3.3.5
|
flutter_secure_storage: ^3.3.5
|
||||||
|
|||||||
Reference in New Issue
Block a user