Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 679a062

Browse files
Implement listener for scroll position change
1 parent eda98cd commit 679a062

36 files changed

+2726
-2329
lines changed

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1220245b330c94ec573d9f4801e93c5c72908f4f
1+
8c2fdb803e49b361235bf6b55e98cb2df7a167e0

packages/webview_flutter/webview_flutter/example/pubspec.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,9 @@ flutter:
3838
- assets/sample_video.mp4
3939
- assets/www/index.html
4040
- assets/www/styles/style.css
41+
42+
43+
# FOR TESTING ONLY. DO NOT MERGE.
44+
dependency_overrides:
45+
webview_flutter_platform_interface:
46+
path: ../../../webview_flutter/webview_flutter_platform_interface

packages/webview_flutter/webview_flutter/pubspec.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ dev_dependencies:
3131
sdk: flutter
3232
mockito: ^5.3.2
3333
plugin_platform_interface: ^2.1.3
34+
35+
36+
# FOR TESTING ONLY. DO NOT MERGE.
37+
dependency_overrides:
38+
webview_flutter_platform_interface:
39+
path: ../../webview_flutter/webview_flutter_platform_interface
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/luongvinh/fvm/versions/3.7.0
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"flutterSdkVersion": "3.7.0",
3+
"flavors": {}
4+
}

packages/webview_flutter/webview_flutter_android/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.1.4
2+
3+
* Adds a method `setScrollListener` to the `AndroidWebViewController` to get notified when the X and Y positions changed.
4+
15
## 3.1.3
26

37
* Fixes crash when the Java `InstanceManager` was used after plugin was removed from the engine.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)