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: 9 additions & 3 deletions packages/flutter_inappwebview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
## 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 `scrollBy`/`getScrollX`/`getScrollY` occasionally returning a stale scroll position.

## 0.1.2

* Update analysis_options.yaml for Flutter 3.47.0.
* Temporarily suppress new analyze issues via analysis_options.yaml rules after the Flutter 3.47.0 upgrade.
* Update the repository URL to use the `main` branch.
- Update analysis_options.yaml for Flutter 3.47.0.
- Temporarily suppress new analyze issues via analysis_options.yaml rules after the Flutter 3.47.0 upgrade.
- Update the repository URL to use the `main` branch.

## 0.1.1

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.2
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