File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
examples/platform_services
packages/flutter/lib/src/services Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Example of calling platform services from Flutter
2
2
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.
4
4
5
5
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 / ) .
7
7
8
8
## iOS
9
9
You can use the commands ` flutter build ` and ` flutter run ` from the app's root
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import 'platform_messages.dart';
26
26
/// one message handler can be registered with the channel name at any given
27
27
/// time.
28
28
///
29
- /// See: <https://flutter.io/platform-services />
29
+ /// See: <https://flutter.io/platform-channels />
30
30
class PlatformMessageChannel <T > {
31
31
/// Creates a [PlatformMessageChannel] with the specified [name] and [codec] .
32
32
///
@@ -102,7 +102,7 @@ class PlatformMessageChannel<T> {
102
102
/// The identity of the channel is given by its name, so other uses of that name
103
103
/// with may interfere with this channel's communication.
104
104
///
105
- /// See: <https://flutter.io/platform-services />
105
+ /// See: <https://flutter.io/platform-channels />
106
106
class PlatformMethodChannel {
107
107
/// Creates a [PlatformMethodChannel] with the specified [name] .
108
108
///
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ typedef Future<ByteData> _PlatformMessageHandler(ByteData message);
20
20
/// * [PlatformMethodChannel] , which provides higher-level platform
21
21
/// communication such as method invocations and event streams.
22
22
///
23
- /// See: <https://flutter.io/platform-services />
23
+ /// See: <https://flutter.io/platform-channels />
24
24
class PlatformMessages {
25
25
PlatformMessages ._();
26
26
You can’t perform that action at this time.
0 commit comments