Sarah Zakarias | a94e995 | 2017-03-30 15:11:19 +0200 | [diff] [blame] | 1 | # Example of calling platform services from Flutter |
| 2 | |
Yazeed Al-Khalaf | d41b1fb | 2020-07-23 04:23:47 +0300 | [diff] [blame] | 3 | This project demonstrates how to connect a Flutter app to platform-specific |
| 4 | services on iOS using Swift. The equivalent version of this project in |
| 5 | Objective C is found in examples/platform_channel. |
Sarah Zakarias | a94e995 | 2017-03-30 15:11:19 +0200 | [diff] [blame] | 6 | |
| 7 | You can read more about |
Tim Sneath | 5291897 | 2019-04-05 11:39:30 -0700 | [diff] [blame] | 8 | [accessing platform and third-party services in Flutter](https://flutter.dev/platform-channels/). |
Sarah Zakarias | a94e995 | 2017-03-30 15:11:19 +0200 | [diff] [blame] | 9 | |
| 10 | ## iOS |
Yazeed Al-Khalaf | d41b1fb | 2020-07-23 04:23:47 +0300 | [diff] [blame] | 11 | |
Sarah Zakarias | a94e995 | 2017-03-30 15:11:19 +0200 | [diff] [blame] | 12 | You can use the commands `flutter build` and `flutter run` from the app's root |
| 13 | directory to build/run the app or you can open `ios/Runner.xcworkspace` in Xcode |
| 14 | and build/run the project as usual. |
| 15 | |
| 16 | ## Android |
Yazeed Al-Khalaf | d41b1fb | 2020-07-23 04:23:47 +0300 | [diff] [blame] | 17 | |
Sarah Zakarias | a94e995 | 2017-03-30 15:11:19 +0200 | [diff] [blame] | 18 | We refer to the platform_channel project. |