Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slightfoot committed Nov 15, 2018
1 parent 348038e commit d33f2a8
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 4 deletions.
19 changes: 17 additions & 2 deletions CHANGELOG.md
@@ -1,3 +1,18 @@
# 0.3.0

- Fixes rect capture issue. Ensures WebView remains in the correct place on screen even when keyboard appears.
- Fixed iOS crash issue with Flutter `>= 0.10.2`.
- Added new `clearCookies` feature.
- Added support for `hidden` and `initialChild` feature to show page loading view.
- Added supportMultipleWindows: enables Multiple Window Support on Android.
- Added appCacheEnabled: enables Application Caches API on Android.
- Added allowFileURLs: allows `file://` local file URLs.
- iOS Now supports: `reload`, `goBack`, and `goForward`.
- iOS Bug fix `didFailNavigation` #77
- Updated Android `compileSdkVersion` to `27` matching offical Flutter plugins.
- Fixed Android `reloadUrl` so settings are not cleared.
- Enabled compatible `Mixed Content Mode` on Android.

# 0.2.1

- Added webview scrolling listener
Expand Down Expand Up @@ -57,10 +72,10 @@
- state change event
- embed in rectangle or fullscreen if null
- hidden webview

- Android
- adding Activity in manifest is not needed anymore

- Add `WebviewScaffold`

# 0.0.9
Expand Down
27 changes: 27 additions & 0 deletions README.md
Expand Up @@ -126,6 +126,8 @@ flutterWebviewPlugin.launch(url,
- `Stream<Null>` onDestroy
- `Stream<String>` onUrlChanged
- `Stream<WebViewStateChanged>` onStateChanged
- `Stream<double>` onScrollXChanged
- `Stream<double>` onScrollYChanged
- `Stream<String>` onError

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

```dart
Future<Null> cleanCookies();
```

```dart
Future<Null> resize(Rect rect);
```
Expand All @@ -176,3 +182,24 @@ Future<Null> hide();
```dart
Future<Null> reloadUrl(String url);
```

```dart
Future<Null> close();
```

```dart
Future<Null> reload();
```

```dart
Future<Null> goBack();
```

```dart
Future<Null> goForward();
```

```dart
Future<Null> stopLoading();
```

6 changes: 4 additions & 2 deletions pubspec.yaml
Expand Up @@ -4,12 +4,14 @@ authors:
- Hadrien Lejard <hadrien.lejard@gmail.com>
- Toufik Zitouni <toufiksapps@gmail.com>
- Pedia <kpedia@163.com>
- Simon Lightfoot <simon@devangels.london>
- Rafal Wachol <gorudonu@gmail.com>
homepage: https://github.com/dart-flitter/flutter_webview_plugin
version: 0.2.1+2
version: 0.3.0
maintainer: Simon Lightfoot (@slightfoot)

environment:
sdk: ">=2.0.0-dev <3.0.0"
sdk: ">=2.0.0 <3.0.0"

flutter:
plugin:
Expand Down

0 comments on commit d33f2a8

Please sign in to comment.