Skip to content

Commit

Permalink
Change version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Swanseo0 committed Nov 17, 2023
1 parent 870d7dd commit 1306e42
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 8 deletions.
6 changes: 5 additions & 1 deletion packages/webview_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
## Next
## 0.9.0

* Update webivew_flutter to 4.4.2.
* Update webview_flutter_platform_interface to 2.6.0.
* Adds pub topics to package metadata.
* Adds support to retrieve the user agent. See `TizenWebViewController.getUserAgent`.
* Adds support to register a callback to receive JavaScript console messages. See `TizenWebViewController.setOnConsoleMessage`.
* Apply PlatformView API change.
* Fix bug on playing youtube on TV.

## 0.8.0

Expand Down
22 changes: 19 additions & 3 deletions packages/webview_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ This package is not an _endorsed_ implementation of `webview_flutter`. Therefore

```yaml
dependencies:
webview_flutter: ^4.2.3
webview_flutter_tizen: ^0.8.0
webview_flutter: ^4.4.2
webview_flutter_tizen: ^0.9.0
```
## Example
Expand Down Expand Up @@ -59,4 +59,20 @@ class _WebViewExampleState extends State<WebViewExample> {

## Supported devices

This plugin is only supported on Tizen TV devices running Tizen 5.5 or later.
This plugin is only supported on Tizen TV devices running Tizen 5.5 or later.

## Note

To play Youtube, make app's background color to transparent.

```diff
--- a/packages/webview_flutter/example/lib/main.dart
+++ b/packages/webview_flutter/example/lib/main.dart
@override
Widget build(BuildContext context) {
return Scaffold(
- backgroundColor: Colors.green,
+ backgroundColor: Colors.transparent,
appBar: AppBar(
title: const Text('Flutter WebView example'),
```
2 changes: 1 addition & 1 deletion packages/webview_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies:
path_provider: ^2.0.7
path_provider_tizen:
path: ../../path_provider/
webview_flutter: ^4.2.3
webview_flutter: ^4.4.2
webview_flutter_tizen:
path: ../

Expand Down
6 changes: 3 additions & 3 deletions packages/webview_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: webview_flutter_tizen
description: Tizen implementation of the webview_flutter plugin.
homepage: https://github.com/flutter-tizen/plugins
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/webview_flutter
version: 0.8.0
version: 0.9.0

environment:
sdk: ">=2.18.0 <4.0.0"
Expand All @@ -20,8 +20,8 @@ dependencies:
flutter:
sdk: flutter
flutter_tizen: ^0.2.1
webview_flutter: ^4.2.3
webview_flutter_platform_interface: ^2.3.0
webview_flutter: ^4.4.2
webview_flutter_platform_interface: ^2.6.0

topics:
- html
Expand Down

0 comments on commit 1306e42

Please sign in to comment.