Skip to content

Commit 29bc946

Browse files
committed
chore: fix lints
1 parent ae88b80 commit 29bc946

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

packages/stream_chat_flutter/CHANGELOG.md

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
🐞 Fixed
1313

14-
- Fixed mistakenly passing the hyperlink text to the `onLinkTap` callback instead of the actual `href`.
14+
- Fixed mistakenly passing the hyperlink text to the `onLinkTap` callback instead of the actual
15+
`href`.
1516

1617
## 9.19.0
1718

@@ -25,7 +26,8 @@
2526

2627
🐞 Fixed
2728

28-
- Fixed `StreamMessageListView` not marking thread messages as read when scrolled to the bottom of the list.
29+
- Fixed `StreamMessageListView` not marking thread messages as read when scrolled to the bottom of
30+
the list.
2931
- Fixed `StreamMessageInput` not validating draft messages before creating/updating them.
3032

3133
## 9.17.0
@@ -56,7 +58,7 @@
5658

5759
✅ Added
5860

59-
- Added `padding` and `textInputMargin` to `StreamMessageInput` to allow fine-tuning the layout.
61+
- Added `padding` and `textInputMargin` to `StreamMessageInput` to allow fine-tuning the layout.
6062

6163
## 9.15.0
6264

@@ -74,7 +76,8 @@
7476

7577
🐞 Fixed
7678

77-
- Fixed `StreamMessageInput` tries to expand to full height when used in a unconstrained environment.
79+
- Fixed `StreamMessageInput` tries to expand to full height when used in a unconstrained
80+
environment.
7881
- Fixed `StreamCommandAutocompleteOptions` to style the command name with `textHighEmphasis` style.
7982

8083
## 9.13.0
@@ -116,15 +119,18 @@
116119

117120
- Added support for Draft messages preview.
118121
- Added a new `StreamDraftListView` for displaying draft messages.
119-
- Added a confirmation dialog for end vote in Polls. [[#2211]](https://github.com/GetStream/stream-chat-flutter/issues/2211)
122+
- Added a confirmation dialog for end vote in
123+
Polls. [[#2211]](https://github.com/GetStream/stream-chat-flutter/issues/2211)
120124

121125
🐞 Fixed
122126

123-
- [[#2182]](https://github.com/GetStream/stream-chat-flutter/issues/2182) Fixes StreamMessageInput not listening to channel capabilities.
127+
- [[#2182]](https://github.com/GetStream/stream-chat-flutter/issues/2182) Fixes StreamMessageInput
128+
not listening to channel capabilities.
124129

125130
🔄 Changed
126131

127-
- Exported `StreamQuotedMessageWidget` to allow customization of quoted messages using `StreamMessageWidget.quotedMessageBuilder`.
132+
- Exported `StreamQuotedMessageWidget` to allow customization of quoted messages using
133+
`StreamMessageWidget.quotedMessageBuilder`.
128134

129135
## 9.8.0
130136

@@ -149,7 +155,8 @@
149155
- [[#2118]](https://github.com/GetStream/stream-chat-flutter/issues/2118) Fixed invalid assertions
150156
applied on message input command and attachment button.
151157
- [[#2042]](https://github.com/GetStream/stream-chat-flutter/issues/2042) Fixed `StreamMessageInput`
152-
send message predicate to properly handle shift+enter for new lines and improve message text validation.
158+
send message predicate to properly handle shift+enter for new lines and improve message text
159+
validation.
153160

154161
✅ Added
155162

@@ -161,7 +168,8 @@
161168

162169
- [[#2137]](https://github.com/GetStream/stream-chat-flutter/issues/2137) Fixed message input
163170
buttons not being able to customized.
164-
- [[#1775]](https://github.com/GetStream/stream-chat-flutter/issues/1775) Fix incorrect message order.
171+
- [[#1775]](https://github.com/GetStream/stream-chat-flutter/issues/1775) Fix incorrect message
172+
order.
165173

166174
## 9.5.0
167175

@@ -178,14 +186,16 @@
178186
🔄 Changed
179187

180188
- Updated the message list view to prevent pinning messages that have restricted visibility.
181-
- Deprecated `StreamMessageInput.useNativeAttachmentPickerOnMobile` in favor of `StreamMessageInput.useSystemAttachmentPicker`.
189+
- Deprecated `StreamMessageInput.useNativeAttachmentPickerOnMobile` in favor of
190+
`StreamMessageInput.useSystemAttachmentPicker`.
182191

183192
## 9.4.0
184193

185194
🔄 Changed
186195

187196
- Updated minimum Flutter version to 3.27.4 for the SDK.
188-
- Replaced [image_gallery_saver_plus](https://pub.dev/packages/image_gallery_saver_plus) with [gal](https://pub.dev/packages/gal)
197+
- Replaced [image_gallery_saver_plus](https://pub.dev/packages/image_gallery_saver_plus)
198+
with [gal](https://pub.dev/packages/gal)
189199

190200
## 9.3.0
191201

@@ -200,7 +210,8 @@
200210
- Deprecated `StreamVoiceRecordingLoading` as it is no longer used.
201211
- Deprecated `StreamVoiceRecordingPlayer` in favor of `StreamVoiceRecordingAttachment`.
202212
- Deprecated `StreamVoiceRecordingSlider` in favor of `StreamAudioWaveformSlider`.
203-
- Deprecated `VoiceRecordingAttachmentBuilder` in favor of `VoiceRecordingAttachmentPlaylistBuilder`.
213+
- Deprecated `VoiceRecordingAttachmentBuilder` in favor of
214+
`VoiceRecordingAttachmentPlaylistBuilder`.
204215
- Deprecated `StreamVoiceRecordingTheme` in favor of `StreamVoiceRecordingAttachmentTheme`.
205216

206217
## 9.2.0+1

packages/stream_chat_flutter/lib/src/scroll_view/channel_scroll_view/stream_channel_list_tile.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import 'package:collection/collection.dart';
22
import 'package:flutter/material.dart';
33
import 'package:rxdart/rxdart.dart';
4-
import 'package:stream_chat_flutter/src/channel/stream_draft_message_preview_text.dart';
54
import 'package:stream_chat_flutter/src/message_widget/sending_indicator_builder.dart';
65
import 'package:stream_chat_flutter/src/misc/empty_widget.dart';
76
import 'package:stream_chat_flutter/src/misc/timestamp.dart';

packages/stream_chat_flutter/lib/src/scroll_view/draft_scroll_view/stream_draft_list_tile.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import 'package:flutter/material.dart';
2-
import 'package:stream_chat_flutter/src/channel/stream_draft_message_preview_text.dart';
32
import 'package:stream_chat_flutter/src/misc/timestamp.dart';
43
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
54

packages/stream_chat_flutter/lib/src/scroll_view/thread_scroll_view/stream_thread_list_tile.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import 'package:collection/collection.dart';
22
import 'package:flutter/material.dart';
3-
import 'package:stream_chat_flutter/src/channel/stream_draft_message_preview_text.dart';
43
import 'package:stream_chat_flutter/src/misc/timestamp.dart';
54
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
65

0 commit comments

Comments
 (0)