use of io.flutter.module.FlutterDescriptionProvider.FlutterGalleryEntry in project flutter-intellij by flutter.
the class ChoseProjectTypeStep method createDependentSteps.
@NotNull
@Override
public Collection<? extends ModelWizardStep> createDependentSteps() {
List<ModelWizardStep> allSteps = Lists.newArrayList();
myModuleDescriptionToStepMap = new HashMap<>();
for (ModuleGalleryEntry moduleGalleryEntry : myModuleGalleryEntryList) {
FlutterProjectStep step = ((FlutterGalleryEntry) moduleGalleryEntry).createFlutterStep(getModel());
allSteps.add(step);
myModuleDescriptionToStepMap.put(moduleGalleryEntry, step);
}
return allSteps;
}
Aggregations