blob: da415d80ba0d3e4546c8c8eed410e19466ee3408 [file] [log] [blame] [view]
Sarah Zakariasa94e9952017-03-30 15:11:19 +02001# Example of calling platform services from Flutter
2
Yazeed Al-Khalafd41b1fb2020-07-23 04:23:47 +03003This project demonstrates how to connect a Flutter app to platform-specific
4services on iOS using Swift. The equivalent version of this project in
5Objective C is found in examples/platform_channel.
Sarah Zakariasa94e9952017-03-30 15:11:19 +02006
7You can read more about
Tim Sneath52918972019-04-05 11:39:30 -07008[accessing platform and third-party services in Flutter](https://flutter.dev/platform-channels/).
Sarah Zakariasa94e9952017-03-30 15:11:19 +02009
10## iOS
Yazeed Al-Khalafd41b1fb2020-07-23 04:23:47 +030011
Sarah Zakariasa94e9952017-03-30 15:11:19 +020012You can use the commands `flutter build` and `flutter run` from the app's root
13directory to build/run the app or you can open `ios/Runner.xcworkspace` in Xcode
14and build/run the project as usual.
15
16## Android
Yazeed Al-Khalafd41b1fb2020-07-23 04:23:47 +030017
Sarah Zakariasa94e9952017-03-30 15:11:19 +020018We refer to the platform_channel project.