Update links to platform services -> channels (#8975)

This commit is contained in:
Michael Thomsen
2017-03-23 14:16:42 +01:00
committed by GitHub
parent 18db5a2e68
commit 2d29c62590
3 changed files with 5 additions and 5 deletions

View File

@@ -1,9 +1,9 @@
# Example of calling platform services from Flutter
This project demonstrates how to connect a Flutter app to platform specific services.
This project demonstrates how to connect a Flutter app to platform specific services.
You can read more about
[accessing platform and third-party services in Flutter](https://flutter.io/platform-services/).
[accessing platform and third-party services in Flutter](https://flutter.io/platform-channels/).
## iOS
You can use the commands `flutter build` and `flutter run` from the app's root

View File

@@ -26,7 +26,7 @@ import 'platform_messages.dart';
/// one message handler can be registered with the channel name at any given
/// time.
///
/// See: <https://flutter.io/platform-services/>
/// See: <https://flutter.io/platform-channels/>
class PlatformMessageChannel<T> {
/// Creates a [PlatformMessageChannel] with the specified [name] and [codec].
///
@@ -102,7 +102,7 @@ class PlatformMessageChannel<T> {
/// The identity of the channel is given by its name, so other uses of that name
/// with may interfere with this channel's communication.
///
/// See: <https://flutter.io/platform-services/>
/// See: <https://flutter.io/platform-channels/>
class PlatformMethodChannel {
/// Creates a [PlatformMethodChannel] with the specified [name].
///

View File

@@ -20,7 +20,7 @@ typedef Future<ByteData> _PlatformMessageHandler(ByteData message);
/// * [PlatformMethodChannel], which provides higher-level platform
/// communication such as method invocations and event streams.
///
/// See: <https://flutter.io/platform-services/>
/// See: <https://flutter.io/platform-channels/>
class PlatformMessages {
PlatformMessages._();