Skip to content

Commit d33f2a8

Browse files
committed
Release v0.3.0
1 parent 348038e commit d33f2a8

File tree

3 files changed

+48
-4
lines changed

3 files changed

+48
-4
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# 0.3.0
2+
3+
- Fixes rect capture issue. Ensures WebView remains in the correct place on screen even when keyboard appears.
4+
- Fixed iOS crash issue with Flutter `>= 0.10.2`.
5+
- Added new `clearCookies` feature.
6+
- Added support for `hidden` and `initialChild` feature to show page loading view.
7+
- Added supportMultipleWindows: enables Multiple Window Support on Android.
8+
- Added appCacheEnabled: enables Application Caches API on Android.
9+
- Added allowFileURLs: allows `file://` local file URLs.
10+
- iOS Now supports: `reload`, `goBack`, and `goForward`.
11+
- iOS Bug fix `didFailNavigation` #77
12+
- Updated Android `compileSdkVersion` to `27` matching offical Flutter plugins.
13+
- Fixed Android `reloadUrl` so settings are not cleared.
14+
- Enabled compatible `Mixed Content Mode` on Android.
15+
116
# 0.2.1
217

318
- Added webview scrolling listener
@@ -57,10 +72,10 @@
5772
- state change event
5873
- embed in rectangle or fullscreen if null
5974
- hidden webview
60-
75+
6176
- Android
6277
- adding Activity in manifest is not needed anymore
63-
78+
6479
- Add `WebviewScaffold`
6580

6681
# 0.0.9

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ flutterWebviewPlugin.launch(url,
126126
- `Stream<Null>` onDestroy
127127
- `Stream<String>` onUrlChanged
128128
- `Stream<WebViewStateChanged>` onStateChanged
129+
- `Stream<double>` onScrollXChanged
130+
- `Stream<double>` onScrollYChanged
129131
- `Stream<String>` onError
130132

131133
**_Don't forget to dispose webview_**
@@ -161,6 +163,10 @@ Future<String> evalJavascript(String code);
161163
Future<Map<String, dynamic>> getCookies();
162164
```
163165

166+
```dart
167+
Future<Null> cleanCookies();
168+
```
169+
164170
```dart
165171
Future<Null> resize(Rect rect);
166172
```
@@ -176,3 +182,24 @@ Future<Null> hide();
176182
```dart
177183
Future<Null> reloadUrl(String url);
178184
```
185+
186+
```dart
187+
Future<Null> close();
188+
```
189+
190+
```dart
191+
Future<Null> reload();
192+
```
193+
194+
```dart
195+
Future<Null> goBack();
196+
```
197+
198+
```dart
199+
Future<Null> goForward();
200+
```
201+
202+
```dart
203+
Future<Null> stopLoading();
204+
```
205+

pubspec.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ authors:
44
- Hadrien Lejard <[email protected]>
55
- Toufik Zitouni <[email protected]>
66
7+
- Simon Lightfoot <[email protected]>
8+
- Rafal Wachol <[email protected]>
79
homepage: https://github.com/dart-flitter/flutter_webview_plugin
8-
version: 0.2.1+2
10+
version: 0.3.0
911
maintainer: Simon Lightfoot (@slightfoot)
1012

1113
environment:
12-
sdk: ">=2.0.0-dev <3.0.0"
14+
sdk: ">=2.0.0 <3.0.0"
1315

1416
flutter:
1517
plugin:

0 commit comments

Comments
 (0)