diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-07-07 13:09:13 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-07-07 13:09:13 +0200 |
| commit | 3fdaeab6a7fa19b0c5424de487efc37c0994c86e (patch) | |
| tree | 09af4c1d54924350b4e6c89fb4f284170e89b945 /Map/Presentation/Base Components/EvolutionPicker | |
| parent | 933078c10e99002c8a5f647e476819f0f1706a14 (diff) | |
More localization and map preferences
Diffstat (limited to 'Map/Presentation/Base Components/EvolutionPicker')
| -rw-r--r-- | Map/Presentation/Base Components/EvolutionPicker/EvolutionPickerMenu.swift | 27 |
1 files changed, 0 insertions, 27 deletions
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) - */ |