Skip to content

Commit 24dd216

Browse files
fix: 🐛 Update GIF preview url in documentation (#63)
1 parent e07c61b commit 24dd216

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

doc/documentation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ enables seamless integration with cloud services.
77

88
## Preview
99

10-
| ChatList | ChatView |
11-
|--------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------|
12-
| ![ChatList_Preview](https://raw.githubusercontent.com/SimformSolutionsPvtLtd/chatview/master/preview/chatlist.gif) | ![ChatView Preview](https://raw.githubusercontent.com/SimformSolutionsPvtLtd/chatview/master/preview/chatview.gif) |
10+
| ChatList | ChatView |
11+
|------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|
12+
| ![ChatList_Preview](https://raw.githubusercontent.com/SimformSolutionsPvtLtd/chatview/main/preview/chatlist.gif) | ![ChatView Preview](https://raw.githubusercontent.com/SimformSolutionsPvtLtd/chatview/main/preview/chatview.gif) |
1313

1414
## Features
1515

example/lib/modules/chat_detail/chat_detail_screen.dart

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,14 +156,11 @@ class _ChatDetailScreenState extends State<ChatDetailScreen> {
156156
child: const Row(
157157
mainAxisSize: MainAxisSize.min,
158158
children: [
159-
CircleAvatar(
160-
radius: 2.75, backgroundColor: AppColors.grey),
159+
CircleAvatar(radius: 2.75, backgroundColor: AppColors.grey),
161160
SizedBox(width: 3),
162-
CircleAvatar(
163-
radius: 2.75, backgroundColor: AppColors.grey),
161+
CircleAvatar(radius: 2.75, backgroundColor: AppColors.grey),
164162
SizedBox(width: 3),
165-
CircleAvatar(
166-
radius: 2.75, backgroundColor: AppColors.grey),
163+
CircleAvatar(radius: 2.75, backgroundColor: AppColors.grey),
167164
],
168165
),
169166
),

example/lib/modules/chat_list/widgets/chatview_custom_chat_bar.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,8 +383,7 @@ class _ChatViewCustomChatBarState extends State<ChatViewCustomChatBar> {
383383

384384
if (!isRecording.value) {
385385
await controller?.record(
386-
recorderSettings:
387-
voiceRecordingConfig.recorderSettings ?? const RecorderSettings(),
386+
recorderSettings: voiceRecordingConfig.recorderSettings,
388387
);
389388
isRecording.value = true;
390389
} else {

0 commit comments

Comments
 (0)