Skip to content

Commit

Permalink
fix: 🐛 micIcon and stopIcon misplacement
Browse files Browse the repository at this point in the history
  • Loading branch information
vatsaltanna-simformsolutions committed Jul 19, 2024
1 parent a2dae70 commit 611c421
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [2.0.1]

* **Fix**: [226](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/issues/226) micIcon and
stopIcon misplacement
* **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
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 611c421

Please sign in to comment.