5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

FlutterでWebView実装・JavaScript有効化

Last updated at Posted at 2020-12-25

まずはpub.devから"webview"を検索してみる。
image.png
上から順番にポピュラーなWebViewプラグインが表示されたので、webview_flutterを試してみる。Updatedも新しい日付なので選択として良さそう。

Android StudioでNew Flutter Projectを新規作成。
Flutter Applicationを選択する。
image.png
WebView pluginを導入する手順がInstallingに記載されているので順に進める。

pubspec.yamlのdependencies:配下にwebview_flutter: ^1.0.7の記載を追加。

pubspec.yaml
dependencies:
  flutter:
    sdk: flutter

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^1.0.1
  webview_flutter: ^1.0.7

main.dartファイル冒頭に下記import文を追加。

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

クラス _MyHomePageStateの中で下記initStateを追加。
"Undefined name 'Platform'."との警告が表示されるので、import 'dart:io';もmain.dart冒頭に追加。

main.dart
@override
void initState() {
  super.initState();
  // Enable hybrid composition.
  if (Platform.isAndroid) WebView.platform = SurfaceAndroidWebView();
}

return Scaffold(...);部分を下記コードで置き換え。

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

これだけで簡単にWebViewを起動することができた。

初期設定URLの変更・JavaScriptの有効化

https://flutter.devの部分を任意のURLに書き換えてみる。
https://yahoo.co.jpを表示させてみたところ"JavaScriptが無効です"と表示されたので下記手順でJavaScriptを有効化する。

javascriptMode: JavascriptMode.unrestrictedの記載をURL初期指定の直後に追加。

main.dart
@override
Widget build(BuildContext context) {
  return WebView(
      initialUrl: 'https://yahoo.co.jp',
      javascriptMode: JavascriptMode.unrestricted
  );

image.png

上記警告が表示されなくなった。

iOSシミュレータでも設定した初期URLのページを問題なく表示確認することができた。
image.png

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?