We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff9d371 commit 03e182cCopy full SHA for 03e182c
pkg/web_app/lib/src/widget/completion/widget.dart
@@ -272,8 +272,8 @@ final class _CompletionWidget {
272
// Update dropdown position
273
dropdown.style
274
..display = 'block'
275
- ..left = '${inputBoundingRect.left + caretOffset}px'
276
- ..top = '${inputBoundingRect.bottom}px';
+ ..left = '${inputBoundingRect.left + caretOffset + window.scrollX}px'
+ ..top = '${inputBoundingRect.bottom + window.scrollY}px';
277
278
// Apply selectedOptionClass to selected option
279
if (state.suggestions.isNotEmpty) {
0 commit comments