-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a43f703
commit 397b717
Showing
20 changed files
with
2,152 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
mobile_flutter/wlanthermo_flutter_app/.dart_tool/dartpad/web_plugin_registrant.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Flutter web plugin registrant file. | ||
// | ||
// Generated file. Do not edit. | ||
// | ||
|
||
// @dart = 2.13 | ||
// ignore_for_file: type=lint | ||
|
||
import 'package:connectivity_plus/src/connectivity_plus_web.dart'; | ||
import 'package:device_info_plus/src/device_info_plus_web.dart'; | ||
import 'package:firebase_core_web/firebase_core_web.dart'; | ||
import 'package:firebase_messaging_web/firebase_messaging_web.dart'; | ||
import 'package:flutter_native_splash/flutter_native_splash_web.dart'; | ||
import 'package:shared_preferences_web/shared_preferences_web.dart'; | ||
import 'package:url_launcher_web/url_launcher_web.dart'; | ||
import 'package:flutter_web_plugins/flutter_web_plugins.dart'; | ||
|
||
void registerPlugins([final Registrar? pluginRegistrar]) { | ||
final Registrar registrar = pluginRegistrar ?? webPluginRegistrar; | ||
ConnectivityPlusWebPlugin.registerWith(registrar); | ||
DeviceInfoPlusWebPlugin.registerWith(registrar); | ||
FirebaseCoreWeb.registerWith(registrar); | ||
FirebaseMessagingWeb.registerWith(registrar); | ||
FlutterNativeSplashWeb.registerWith(registrar); | ||
SharedPreferencesPlugin.registerWith(registrar); | ||
UrlLauncherPlugin.registerWith(registrar); | ||
registrar.registerMessageHandler(); | ||
} |
Oops, something went wrong.