Skip to content

Latest commit

 

History

History
 
 

webview_flutter

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

webview_flutter_tizen

pub package

The Tizen implementation of webview_flutter.

Supported devices

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

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: ^3.0.2
  webview_flutter_tizen: ^0.4.4

Example

import 'dart:io';
import 'package:webview_flutter/webview_flutter.dart';

class WebViewExample extends StatefulWidget {
  @override
  WebViewExampleState createState() => WebViewExampleState();
}

class WebViewExampleState extends State<WebViewExample> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return WebView(
      initialUrl: 'https://flutter.dev',
    );
  }
}

Limitations