mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Use mojo clipboard service for copy/paste toolbar. BUG=https://github.com/flutter/flutter/issues/1567
31 lines
1.1 KiB
Dart
31 lines
1.1 KiB
Dart
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// System services exposed to Flutter apps.
|
|
///
|
|
/// To use, import `package:flutter/services.dart`.
|
|
///
|
|
/// For example, this library includes [fetch], which fetches data from the
|
|
/// network.
|
|
///
|
|
/// This library depends only on core Dart libraries, the `mojo`,
|
|
/// `mojo_services`, and `sky_services` packages, and the `foundation`
|
|
/// Flutter library.
|
|
library services;
|
|
|
|
export 'src/services/activity.dart';
|
|
export 'src/services/app_messages.dart';
|
|
export 'src/services/asset_bundle.dart';
|
|
export 'src/services/binding.dart';
|
|
export 'src/services/clipboard.dart';
|
|
export 'src/services/haptic_feedback.dart';
|
|
export 'src/services/image_cache.dart';
|
|
export 'src/services/image_decoder.dart';
|
|
export 'src/services/image_resource.dart';
|
|
export 'src/services/keyboard.dart';
|
|
export 'src/services/path_provider.dart';
|
|
export 'src/services/shell.dart';
|
|
export 'src/services/system_chrome.dart';
|
|
export 'src/services/system_sound.dart';
|