Skip to content
Merged
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
8 changes: 8 additions & 0 deletions packages/flutter_inappwebview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.2.0

- Fix `onTitleChanged` to fire on title changes after the initial load, not just once at load finish.
- Fix `getUrl()` returning a cancelled navigation's URL, and skip `shouldOverrideUrlLoading` for app-initiated navigations.
- Fix `shouldOverrideUrlLoading` not being invoked for a hardware/remote Back-key navigation.
- Fix `scrollBy`/`getScrollX`/`getScrollY` occasionally returning a stale scroll position.
- Fix `onUpdateVisitedHistory`/`getUrl()` staying pinned to a cancelled navigation's URL after a later same-document URL change, and bound how long a pending `scrollTo`/`scrollBy` target is trusted.

## 0.1.4

- Fix a SIGTRAP crash on TV app teardown by calling `ewk_init()`/`ewk_shutdown()` exactly once per process.
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_inappwebview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add the internet privilege to the app manifest:
```yaml
dependencies:
flutter_inappwebview: ^6.1.5
flutter_inappwebview_tizen: ^0.1.4
flutter_inappwebview_tizen: ^0.2.0
```

```dart
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Load file test</title>
</head>
<body>
<h1>Loaded from asset</h1>
</body>
</html>
Loading
Loading