Skip to content

[webview_flutter] Adds support to control overscrolling #8451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Apr 18, 2025
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
34ddd2f
add scrollmode
bparrishMines Jan 9, 2025
1d3902a
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Jan 17, 2025
5bb0696
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Jan 31, 2025
4d3d081
add platform updates
bparrishMines Jan 31, 2025
01da228
fix docs
bparrishMines Feb 4, 2025
4e50d1b
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Apr 7, 2025
acb1363
update mocks and add webview flutter test
bparrishMines Apr 7, 2025
6ba6cf5
export overscroll mode
bparrishMines Apr 7, 2025
0f923bd
undo web
bparrishMines Apr 7, 2025
d52fc36
android impl test
bparrishMines Apr 8, 2025
0d0df61
ios tests
bparrishMines Apr 8, 2025
63d7fdc
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Apr 15, 2025
78ef3c7
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Apr 16, 2025
b297998
add destroy back in
bparrishMines Apr 16, 2025
fadbd3e
add default behavior
bparrishMines Apr 16, 2025
5b45350
forgot value
bparrishMines Apr 16, 2025
1b18d6c
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Apr 16, 2025
f89d0ab
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Apr 17, 2025
e90b60a
version bump
bparrishMines Apr 17, 2025
c036f7d
fix changelog
bparrishMines Apr 17, 2025
ffc8dd4
pubspec changes
bparrishMines Apr 17, 2025
6a09a85
flutter version bump
bparrishMines Apr 17, 2025
ea6d045
Merge branch 'main' of github.com:flutter/packages into android_overs…
bparrishMines Apr 17, 2025
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
Prev Previous commit
Next Next commit
add destroy back in
  • Loading branch information
bparrishMines committed Apr 16, 2025
commit b297998a1a13975892edb4c074dfcaeb92515f1c
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ class AndroidWebkitLibraryPigeonInstanceManager(
*/
fun <T> remove(identifier: Long): T? {
logWarningIfFinalizationListenerHasStopped()
if (instance is WebViewProxyApi.WebViewPlatformView) {
instance.destroy()
}
return strongInstances.remove(identifier) as T?
}

Expand Down