Skip to content

Commit

Permalink
Fix #177 and #120
Browse files Browse the repository at this point in the history
  • Loading branch information
ueman committed Feb 4, 2022
1 parent 6af6b7f commit f973386
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions feedback/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [2.4.1]

* Fix backspace not working in some cases ([#120](https://github.com/ueman/feedback/issues/120), [#177](https://github.com/ueman/feedback/issues/177))

## [2.4.0]

* Improve overriding of localization texts
Expand Down
10 changes: 6 additions & 4 deletions feedback/lib/src/feedback_bottom_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,12 @@ class _DraggableFeedbackSheetState extends State<_DraggableFeedbackSheet> {
child: Material(
color: FeedbackTheme.of(context).feedbackSheetColor,
// A `ListView` makes the content here disappear.
child: widget.feedbackBuilder(
context,
widget.onSubmit,
scrollController,
child: DefaultTextEditingShortcuts(
child: widget.feedbackBuilder(
context,
widget.onSubmit,
scrollController,
),
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion feedback/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: feedback
description: A Flutter package for getting better feedback. It allows the user to give interactive feedback directly in the app.
version: 2.4.0
version: 2.4.1
homepage: https://uekoetter.dev/
repository: https://github.com/ueman/feedback
issue_tracker: https://github.com/ueman/feedback/issues
Expand Down

0 comments on commit f973386

Please sign in to comment.