facebook twitter hatena line email

「Flutter/外部ライブラリ/webview flutter」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(サンプル)
(公式サンプル)
行42: 行42:
 
https://pub.dev/packages/webview_flutter/example
 
https://pub.dev/packages/webview_flutter/example
  
main.dartを上書きすれば良い。
+
main.dartを上記urlのcodeで上書きすれば良い。

2020年12月1日 (火) 12:02時点における版

インストール

pubspec.yaml

dependencies:
  webview_flutter: ^1.0.7

公式

https://pub.dev/packages/webview_flutter

サンプル起動

WebView.platform = SurfaceAndroidWebView(); in initState().

サンプル

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();
    // Enable hybrid composition.
    if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView();
  }

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

公式サンプル

https://pub.dev/packages/webview_flutter/example

main.dartを上記urlのcodeで上書きすれば良い。