Skip to content

Commit

Permalink
🐛 fix: start and stop recording icons were reverse #226 (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
apurva010 authored Jul 29, 2024
1 parent a2dae70 commit 4de800d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## [2.0.1]

* **Fix**: [217](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/pull/217) fixed y
* **Fix**: [226](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/issues/226) Fixed
the icons for starting and stopping recording were reversed
* **Fix**: [217](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/pull/217) Fixed y
position of reaction popup
* **Feat** [223](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/issues/223) ability to
* **Feat** [223](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/issues/223) Ability to
hide share icon in image view

## [2.0.0]
Expand Down
4 changes: 2 additions & 2 deletions lib/src/widgets/chatui_textfield.dart
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ class _ChatUITextFieldState extends State<ChatUITextField> {
? _recordOrStop
: null,
icon: (isRecordingValue
? voiceRecordingConfig?.micIcon
: voiceRecordingConfig?.stopIcon) ??
? voiceRecordingConfig?.stopIcon
: voiceRecordingConfig?.micIcon) ??
Icon(
isRecordingValue ? Icons.stop : Icons.mic,
color:
Expand Down

0 comments on commit 4de800d

Please sign in to comment.