Yes you can . You can see the documentation on that or if you want you can see tutorial.25 Nis 2018
Read moreCan I combine Flutter and Kotlin?
The answers is yes you can but in the end you need to write more code in your flutter project to communicate with Kotlin library, You can read this article below for more detail.
Read moreWhat is a platform channel?
Overview. Overall the Platform Channel represents a way to connect native code with the Flutter app (Dart) . It can be used to implement any Flutter missing functionality using a platform-specific code (plugins) and call any APIs whether available in Java or Kotlin code on Android, or in Objective-C or Swift code on iOS …
Read moreHow do I add desktop support to an existing Flutter app?
Add desktop support to an existing Flutter app $ flutter create –platforms=windows,macos,linux . This adds the necessary desktop files and directories to your existing Flutter project. To add only specific desktop platforms, change the platforms list to include only the platform(s) you want to add.
Read moreHow do you call a platform specific code in Flutter?
Writing custom platform-specific code
Read moreHow do I add a platform to my Flutter?
flutter create . You can simply run this from the root of your Flutter project and it will add the required files for all platforms. If you only want to add support for specific enabled platforms, you can do that by supplying the –platforms argument: flutter create –platforms=web,macos .
Read more