webview_flutter_tizen 0.7.0 webview_flutter_tizen: ^0.7.0 copied to clipboard
Tizen implementation of the webview_flutter plugin.
webview_flutter_tizen #
The Tizen implementation of webview_flutter
for Tizen TV devices.
The WebView widget is backed by the EFL WebKit (EWK) on Tizen.
Required privileges #
To use this plugin, add below lines under the <manifest>
section in your tizen-manifest.xml
file.
<privileges>
<privilege>http://tizen.org/privilege/internet</privilege>
</privileges>
Usage #
This package is not an endorsed implementation of webview_flutter
. Therefore, you have to include webview_flutter_tizen
alongside webview_flutter
as dependencies in your pubspec.yaml
file.
dependencies:
webview_flutter: ^4.0.2
webview_flutter_tizen: ^0.7.0
Example #
import 'package:webview_flutter/webview_flutter.dart';
class WebViewExample extends StatefulWidget {
const WebViewExample({super.key});
@override
State<WebViewExample> createState() => _WebViewExampleState();
}
class _WebViewExampleState extends State<WebViewExample> {
final WebViewController _controller = WebViewController();
@override
void initState() {
super.initState();
_controller.loadRequest(Uri.parse('https://flutter.dev'));
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: WebViewWidget(controller: _controller),
);
}
}
Supported devices #
This plugin is only supported on Tizen TV devices running Tizen 5.5 or later.