-
Notifications
You must be signed in to change notification settings - Fork 11
/
pubspec.yaml
60 lines (53 loc) · 2.37 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: flutter_linux_webview
description: "A Linux Desktop implementation for the webview_flutter (v3.0.4) plugin, powered by CEF (Chromium Embedded Framework)"
version: 0.1.3
repository: https://github.com/access-company/flutter_linux_webview
environment:
sdk: ">=2.17.0 <4.0.0"
flutter: ">=3.0.0"
dependencies:
flutter:
sdk: flutter
logging: ^1.1.0
path: ^1.8.1
webview_flutter_platform_interface: ^1.8.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^1.0.0
# note: Symbols defined in the webview_flutter package, such as the [WebView]
# and [WebViewController] and other classes, are not resolved
# (i.e., hyperlinked) when generating documentation for this plugin. To make
# them resolved, you need to temporarily add a dependency on the
# webview_flutter package here and import it in the files that have the
# references to be resolved.
#
# (Unfortunately, temporary reference resolution only during document
# generation does not seem to be possible.)
#
# webview_flutter: ^3.0.4
# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
# The following section is specific to Flutter.
flutter:
# This section identifies this Flutter project as a plugin project.
# The 'pluginClass' and Android 'package' identifiers should not ordinarily
# be modified. They are used by the tooling to maintain consistency when
# adding or updating assets for this project.
plugin:
implements: webview_flutter
platforms:
linux:
# This tells the SDK that this class is a plugin entry point for C++.
# Auto-generated build/linux/flutter/generated_plugin_registrant.cc will
# call `flutter_linux_webview_plugin_register_with_registrar()`.
pluginClass: FlutterLinuxWebviewPlugin
# TODO(Ino): Support auto registration of our platform implementation
# when upgrading to v4. This can be done with `dartPluginClass` field
# below. `dartPluginClass` filed tells the SDK that this class is a
# plugin entry point for Dart. The auto-generated
# .dart_tool/flutter_build/dart_plugin_registrant.dart
# will call `MyWebViewPlatform.registerWith()` so we can register our
# platform implementation at that time with
# webview_flutter_platform_interface.
### dartPluginClass: MyWebViewPlatform