1 | // Copyright 2014 The Flutter Authors. All rights reserved. |
---|---|
2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. |
4 | |
5 | /// The platform channels and plugin registry implementations for |
6 | /// the web implementations of Flutter plugins. |
7 | /// |
8 | /// This library provides the [Registrar] class, which is used in the |
9 | /// `registerWith` method that is itself called by the code generated |
10 | /// by the `flutter` tool for web applications. |
11 | /// |
12 | /// See also: |
13 | /// |
14 | /// * [How to Write a Flutter Web Plugin](https://medium.com/flutter/how-to-write-a-flutter-web-plugin-5e26c689ea1), a Medium article |
15 | /// describing how the `url_launcher` package was created using `flutter_web_plugins`. |
16 | /// |
17 | /// @docImport 'src/plugin_registry.dart'; |
18 | library flutter_web_plugins; |
19 | |
20 | export 'src/navigation/url_strategy.dart'; |
21 | export 'src/navigation/utils.dart'; |
22 | export 'src/plugin_event_channel.dart'; |
23 | export 'src/plugin_registry.dart'; |
24 |