[webview_flutter_tizen] Update webview_flutter to 4.13.1#1009
[webview_flutter_tizen] Update webview_flutter to 4.13.1#1009seungsoo47 wants to merge 2 commits intoflutter-tizen:masterfrom
Conversation
seungsoo47
commented
Apr 24, 2026
- Update minimum supported SDK version to Flutter 3.32/Dart 3.8.
- Update webview_flutter to 4.13.1.
- Update webview_flutter_platform_interface to 2.13.0.
- Add support for setVerticalScrollBarEnabled, setHorizontalScrollBarEnabled, supportsSetScrollBarsEnabled APIs
There was a problem hiding this comment.
Code Review
This pull request updates the webview_flutter_tizen package to version 0.10.0, increasing the minimum supported SDK versions to Flutter 3.32 and Dart 3.8. It introduces support for setVerticalScrollBarEnabled and setHorizontalScrollBarEnabled APIs, including the necessary native Tizen ewk bindings. Documentation has been added to the README regarding the current limitations of these scrollbar settings. Feedback was provided to ensure that scrollbar visibility changes are applied to the webview instance immediately upon the method call, rather than only during the load start event.
| EwkInternalApiBinding::GetInstance().view.MainFrameScrollbarVisibleSet( | ||
| webview->webview_instance_, webview->scrollbar_enabled_); |
There was a problem hiding this comment.
Should this API always be called every time the page is reloaded?
You are already calling the set API on line 709.
There was a problem hiding this comment.
This API should be called only after the webview is loaded.
After that, the API call on line 709 is intended to immediately reflect the requested state of the UI.