Reputation: 21
Is Dart my only programming language option with Flutter or can I use other languages like C++, Java, Kotlin, or Go? What are all the available options for langugaes with the Flutter framework if they're are additional options.
Upvotes: 1
Views: 3414
Reputation: 126734
Dart is the only programming language that is currently supported by the Flutter framework. You can get started here.
To be honest, I doubt that there are any plans on integrating other programming languages because Flutter is built around Dart and vise versa.
When writing applications in the framework, you can still access native code, that would be Android (Java, Kotlin, C++), iOS (Objective-C, Swift) and probably other platforms in the future.
Upvotes: 4