diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 941d8bcd..a1975f82 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: example description: A new Flutter project. -version: 1.1.1+2 +version: 1.1.1+3 environment: sdk: ">=2.2.2 <3.0.0" diff --git a/lib/src/channel_file_display_screen.dart b/lib/src/channel_file_display_screen.dart index 6feac224..c6132609 100644 --- a/lib/src/channel_file_display_screen.dart +++ b/lib/src/channel_file_display_screen.dart @@ -142,7 +142,7 @@ class _ChannelFileDisplayScreenState extends State { } return LazyLoadScrollView( - onEndOfPage: () => messageSearchBloc.search( + onEndOfPage: () => messageSearchBloc.loadMore( filter: { 'cid': { r'$in': ['messaging:${StreamChannel.of(context).channel.id}'] diff --git a/lib/src/channel_media_display_screen.dart b/lib/src/channel_media_display_screen.dart index ebc95516..8b69fac8 100644 --- a/lib/src/channel_media_display_screen.dart +++ b/lib/src/channel_media_display_screen.dart @@ -156,7 +156,7 @@ class _ChannelMediaDisplayScreenState extends State { } return LazyLoadScrollView( - onEndOfPage: () => messageSearchBloc.search( + onEndOfPage: () => messageSearchBloc.loadMore( filter: { 'cid': { r'$in': ['messaging:${StreamChannel.of(context).channel.id}'] diff --git a/lib/src/stream_chat_theme.dart b/lib/src/stream_chat_theme.dart index 70845ba9..f9c81be7 100644 --- a/lib/src/stream_chat_theme.dart +++ b/lib/src/stream_chat_theme.dart @@ -491,9 +491,9 @@ class ColorTheme { stops: [0, 1], ), this.borderTop = const Effect( - sigmaX: 0, sigmaY: -1, color: Color(0xff141924), blur: 0.0), + sigmaX: 0, sigmaY: -1, color: Color(0xff000000), blur: 0.0), this.borderBottom = - const Effect(sigmaX: 0, sigmaY: 1, color: Color(0xff141924), blur: 0.0), + const Effect(sigmaX: 0, sigmaY: 1, color: Color(0xff000000), blur: 0.0), this.shadowIconButton = const Effect( sigmaX: 0, sigmaY: 2, color: Color(0xff000000), alpha: 0.5, blur: 4.0), this.modalShadow = const Effect( diff --git a/pubspec.yaml b/pubspec.yaml index 9ef7a80a..09ddc61c 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -28,7 +28,7 @@ dependencies: file_picker: ^2.0.12 image_picker: ^0.6.7+2 flutter_keyboard_visibility: ^4.0.2 - stream_chat: ^0.2.23+2 + stream_chat: ^0.2.23+3 mime: ^0.9.6+3 video_compress: ^2.1.1 visibility_detector: ^0.1.5