webview_flutter_lwe 0.1.1 copy "webview_flutter_lwe: ^0.1.1" to clipboard
webview_flutter_lwe: ^0.1.1 copied to clipboard

Tizen implementation of the webview_flutter plugin backed by Lightweight Web Engine.

webview_flutter_lwe #

pub package

The Tizen implementation of webview_flutter backed by the Lightweight Web Engine (LWE).

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_lwe alongside webview_flutter as dependencies in your pubspec.yaml file.

dependencies:
  webview_flutter: ^3.0.4
  webview_flutter_lwe: ^0.1.1

Example #

import 'package:webview_flutter/webview_flutter.dart';

class WebViewExample extends StatefulWidget {
  const WebViewExample({Key? key}) : super(key: key);

  @override
  WebViewExampleState createState() => WebViewExampleState();
}

class WebViewExampleState extends State<WebViewExample> {
  @override
  Widget build(BuildContext context) {
    return WebView(initialUrl: 'https://flutter.dev');
  }
}

Supported devices #

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

For a detailed list of features supported by the Lightweight Web Engine, refer to this page.

1
likes
0
points
97
downloads

Publisher

verified publishertizen.org

Weekly Downloads

Tizen implementation of the webview_flutter plugin backed by Lightweight Web Engine.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_tizen, webview_flutter, webview_flutter_platform_interface

More

Packages that depend on webview_flutter_lwe