I'm testing out Flutter. I would like to integrate some iOS/Android specific SDKs. How do I add the SDKs to the correct OS folders and access the SDK? Is this possible with Flutter?
Asked
Active
Viewed 773 times
3
-
1Flutter has system to allow you to call platform specific code - and also make calls the other way. See [platform channels](https://flutter.io/docs/development/platform-integration/platform-channels). To package that custom code into a reusable package use [plugins](https://flutter.io/docs/development/packages-and-plugins/developing-packages). – Richard Heap Jan 19 '19 at 01:21
-
1Possible duplicate of [Calling native libraries in Flutter using Platform Channels](https://stackoverflow.com/questions/50020347/calling-native-libraries-in-flutter-using-platform-channels) – Richard Heap Jan 19 '19 at 01:25