flutter_web_plugins.dart 902 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6 7 8 9 10 11 12 13 14
/// The platform channels and plugin registry implementations for
/// the web implementations of Flutter plugins.
///
/// This library provides the [Registrar] class, which is used in the
/// `registerWith` method that is itself called by the code generated
/// by the `flutter` tool for web applications.
///
/// See also:
///
///  * [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
library flutter_web_plugins;

18
export 'src/navigation/url_strategy.dart';
19
export 'src/navigation/utils.dart';
20
export 'src/plugin_event_channel.dart';
21
export 'src/plugin_registry.dart';