Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- Add `sentry.origin` to logs created by `LoggingIntegration` ([#3153](https://github.com/getsentry/sentry-dart/pull/3153))
- Tag all spans with thread info on non-web platforms ([#3101](https://github.com/getsentry/sentry-dart/pull/3101), [#3144](https://github.com/getsentry/sentry-dart/pull/3144))
- feat(feedback): Add option to disable keyboard resize ([#3154](https://github.com/getsentry/sentry-dart/pull/3154))

## 9.7.0-beta.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ class SentryFeedbackOptions {
/// Displays the capture screenshot button on the feedback form
var showCaptureScreenshot = true;

/// Determines whether the feedback view should resize to avoid the keyboard.
var resizeToAvoidBottomInset = true;

// Form Labels Configuration

/// The title of the feedback form.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ class _SentryFeedbackWidgetState extends State<SentryFeedbackWidget> {
@override
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: widget.options.resizeToAvoidBottomInset,
appBar: AppBar(
title: Text(widget.options.title),
actions: [
Expand Down
Loading