-
Notifications
You must be signed in to change notification settings - Fork 329
Closed
Milestone
Description
Steps to Reproduce
The flutter tool will be removing the option to create a new Flutter app using Objective-C with flutter create --ios-language
flutter/flutter#148586
Remove "iOS languages" from the project creation wizard, and stop passing in the --ios-language flag

Lines 83 to 84 in 9536817
| iosLanguageRadios = new RadiosForm(FlutterBundle.message("flutter.module.create.settings.radios.ios.object_c"), | |
| FlutterBundle.message("flutter.module.create.settings.radios.ios.swift")); |
flutter-intellij/flutter-idea/src/io/flutter/sdk/FlutterCreateAdditionalSettings.java
Lines 137 to 140 in 9536817
| if (swift == null || Boolean.FALSE.equals(swift)) { | |
| args.add("--ios-language"); | |
| args.add("objc"); | |
| } |