Skip to content
Open
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
9 changes: 9 additions & 0 deletions packages/webview_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.10.1

* Implement `clearLocalStorage`.
* Implement `onHttpError` for the navigation delegate.
* Fix races and use-after-frees on WebView disposal, including a buffer-pool
use-after-free on the raster thread.
* Replace the Ecore main loop API with GLib.
* Narrow the TV emulator teardown workaround to a runtime profile check.

## 0.10.0

* Update minimum supported SDK version to Flutter 3.32/Dart 3.8.
Expand Down
4 changes: 3 additions & 1 deletion packages/webview_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This package is not an _endorsed_ implementation of `webview_flutter`. Therefore
```yaml
dependencies:
webview_flutter: ^4.13.1
webview_flutter_tizen: ^0.10.0
webview_flutter_tizen: ^0.10.1
```

## Example
Expand Down Expand Up @@ -96,3 +96,5 @@ await controller.setVerticalScrollBarEnabled(false);
// This will show both vertical and horizontal scrollbars
await controller.setHorizontalScrollBarEnabled(true);
```

- Using more than one `WebView` at the same time is not supported due to internal implementation issues around native resource lifetime and disposal. Using a single `WebView` at a time works as expected.
Loading
Loading