Skip to content

Commit c32e7c3

Browse files
committed
add docs links
1 parent e61a08e commit c32e7c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/ff-concepts/existing-flutter/method-channels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You’re not limited by what Flutter provides out of the box. MethodChannels let
3535

3636
## What is a MethodChannel?
3737

38-
A **MethodChannel** is Flutter’s core mechanism for integrating platform-specific functionality. It allows Dart code to send messages to, and receive responses from, the host platform’s native code \- Android (written in Kotlin or Java) or iOS (written in Swift or Objective-C). This enables your Flutter app to access device features and third-party native libraries that are outside the scope of the Flutter framework or its plugin ecosystem. Here is an example of MethodChannel.
38+
A **[MethodChannel](https://docs.flutter.dev/platform-integration/platform-channels)** or Platform Channels is Flutter’s core mechanism for integrating platform-specific functionality. It allows Dart code to send messages to, and receive responses from, the host platform’s native code \- Android (written in Kotlin or Java) or iOS (written in Swift or Objective-C). This enables your Flutter app to access device features and third-party native libraries that are outside the scope of the Flutter framework or its plugin ecosystem. Here is an example of MethodChannel.
3939

4040
```js
4141
class _BatteryLevelScreenState extends State<BatteryLevelScreen> {

0 commit comments

Comments
 (0)