From 3fdaeab6a7fa19b0c5424de487efc37c0994c86e Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 7 Jul 2025 13:09:13 +0200 Subject: More localization and map preferences --- .../EvolutionPicker/EvolutionPickerMenu.swift | 27 ---------------------- 1 file changed, 27 deletions(-) (limited to 'Map/Presentation/Base Components/EvolutionPicker/EvolutionPickerMenu.swift') diff --git a/Map/Presentation/Base Components/EvolutionPicker/EvolutionPickerMenu.swift b/Map/Presentation/Base Components/EvolutionPicker/EvolutionPickerMenu.swift index 94a87d7..73837a0 100644 --- a/Map/Presentation/Base Components/EvolutionPicker/EvolutionPickerMenu.swift +++ b/Map/Presentation/Base Components/EvolutionPicker/EvolutionPickerMenu.swift @@ -55,30 +55,3 @@ struct EvolutionPickerMenu: View { #Preview { EvolutionPickerMenu(selectedEvolution: .constant(.ubiquity)) } - -/* -Picker(selection: $selectedEvolution) { - Divider() - ForEach(StageType.characteristics) { stage in - Text(Stage.title(stage)) - .font(selectedEvolution == stage ? .Theme.Body.emphasized : .Theme.Body.regular) - .tag(stage) - } - Divider() - ForEach(StageType.properties) { stage in - Text(Stage.title(stage)) - .font(selectedEvolution == stage ? .Theme.Body.emphasized : .Theme.Body.regular) - .tag(stage) - } - Divider() - ForEach(StageType.custom) { stage in - Text(Stage.title(stage)) - .font(selectedEvolution == stage ? .Theme.Body.emphasized : .Theme.Body.regular) - .tag(stage) - } -} label: { - Label("evolution_picker.label", image: "Icons/Evolution") - .font(.Theme.Body.regular) -}.padding(.horizontal, Dimensions.Spacing.regular) - .padding(.vertical, Dimensions.Spacing.cozy) - */ -- cgit