Skip to content

Commit 2d29c62

Browse files
authored
Update links to platform services -> channels (flutter#8975)
1 parent 18db5a2 commit 2d29c62

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/platform_services/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Example of calling platform services from Flutter
22

3-
This project demonstrates how to connect a Flutter app to platform specific services.
3+
This project demonstrates how to connect a Flutter app to platform specific services.
44

55
You can read more about
6-
[accessing platform and third-party services in Flutter](https://flutter.io/platform-services/).
6+
[accessing platform and third-party services in Flutter](https://flutter.io/platform-channels/).
77

88
## iOS
99
You can use the commands `flutter build` and `flutter run` from the app's root

packages/flutter/lib/src/services/platform_channel.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import 'platform_messages.dart';
2626
/// one message handler can be registered with the channel name at any given
2727
/// time.
2828
///
29-
/// See: <https://flutter.io/platform-services/>
29+
/// See: <https://flutter.io/platform-channels/>
3030
class PlatformMessageChannel<T> {
3131
/// Creates a [PlatformMessageChannel] with the specified [name] and [codec].
3232
///
@@ -102,7 +102,7 @@ class PlatformMessageChannel<T> {
102102
/// The identity of the channel is given by its name, so other uses of that name
103103
/// with may interfere with this channel's communication.
104104
///
105-
/// See: <https://flutter.io/platform-services/>
105+
/// See: <https://flutter.io/platform-channels/>
106106
class PlatformMethodChannel {
107107
/// Creates a [PlatformMethodChannel] with the specified [name].
108108
///

packages/flutter/lib/src/services/platform_messages.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ typedef Future<ByteData> _PlatformMessageHandler(ByteData message);
2020
/// * [PlatformMethodChannel], which provides higher-level platform
2121
/// communication such as method invocations and event streams.
2222
///
23-
/// See: <https://flutter.io/platform-services/>
23+
/// See: <https://flutter.io/platform-channels/>
2424
class PlatformMessages {
2525
PlatformMessages._();
2626

0 commit comments

Comments
 (0)