Home > OS >  Import flutter android project to iOS
Import flutter android project to iOS

Time:02-24

I'm working on the Flutter Android project which is 90% complete, and I want this app to be usable for iOS. Is it possible that I can import this app to iOS without having to start over?

CodePudding user response:

From what I understand about Flutter, as long as you set up your Flutter project correctly it should work on both without issue.

Flutter is one of the most popular cross platform languages out there alongside React. https://stackoverflow.blog/2022/02/21/why-flutter-is-the-most-popular-cross-platform-mobile-sdk/

If you were concerned about it not working on IOS because you are working on Android Studio, I think it still works, but you can always move your code to VS Code.

  • Related