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

- Fix `onTitleChanged` to also fire when the page's title changes after the
initial load (e.g. when JavaScript updates `document.title`), instead of
only once when loading finishes.
- Fix a race where `getUrl()` could return the URL of a navigation that was
cancelled via `shouldOverrideUrlLoading`, and skip the
`shouldOverrideUrlLoading` round-trip for app-initiated navigations
(`loadUrl`, `goBack`, `reload`, etc.).
- Fix `scrollBy`/`getScrollX`/`getScrollY` occasionally returning a stale
scroll position right after `scrollTo`/`scrollBy`.

## 0.1.1

- Fix a crash when a webview is disposed.
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.1
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