Home > front end >  New flutter project Android studio Arctic fox
New flutter project Android studio Arctic fox

Time:10-05

I am new in flutter development. My questions are:

when creating a new flutter project, what is the android language to choose? java or kotlin. what IOS language i should select? swift or objective C

new flutter project Photo

CodePudding user response:

The 'old' Android language is Java.
The 'old' iOS language is Objective C.

You should pick Kotlin and Swift, you'll find much more resources on internet to help you with those languages.

Don't worry too much about this choice, nothing will stop you to re-create your Android and iOS project with another language later if needed !
You can even mix Java and Kotlin on Android

CodePudding user response:

I advise you (and i always choose this myself) to go for Kotlin and Swift and as they are the newest native langages for Android and IOS respectively.

However it might depend on your app requirements and if you plan for instance to write native code along with dart code.

If so, you will write in the langage (ie. Kotlin or Java and Swift or Objective-C) that you have selected at this moment.

  • Related