Skip to content

Commit

Permalink
updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pichillilorenzo committed Oct 17, 2018
1 parent 99ff84c commit ee7910b
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 48 deletions.
102 changes: 57 additions & 45 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ inAppBrowser.removeJavaScriptHandler(String handlerName, int index);

#### Future\<Uint8List\> InAppBrowser.takeScreenshot

Takes a screenshot (in PNG format) of the view's visible viewport and returns a `Uint8List`. Returns `null` if it wasn't be able to take it.
Takes a screenshot (in PNG format) of the WebView's visible viewport and returns a `Uint8List`. Returns `null` if it wasn't be able to take it.

**NOTE for iOS**: available from iOS 11.0+.
```dart
Expand All @@ -512,14 +512,14 @@ inAppBrowser.takeScreenshot();

#### Future\<void\> InAppBrowser.setOptions

Sets the InAppBrowser options with the new `options` and evaluates them.
Sets the `InAppBrowser` options with the new `options` and evaluates them.
```dart
inAppBrowser.setOptions(Map<String, dynamic> options);
```

#### Future\<Map\<String, dynamic\>\> InAppBrowser.getOptions

Gets the current InAppBrowser options. Returns `null` if the options are not setted yet.
Gets the current `InAppBrowser` options. Returns `null` if the options are not setted yet.
```dart
inAppBrowser.getOptions();
```
Expand Down

0 comments on commit ee7910b

Please sign in to comment.