From 1a9ca40da10fa357f225c249096ce95213995658 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Lapersonne Date: Tue, 30 Jan 2024 18:15:43 +0100 Subject: [PATCH] fix(#588): a11y - vocalized focus for variants of lists Signed-off-by: Pierre-Yves Lapersonne --- .../Screens/Components/Pages/Lists/ListComponent.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OrangeDesignSystemDemo/OrangeDesignSystemDemo/Screens/Components/Pages/Lists/ListComponent.swift b/OrangeDesignSystemDemo/OrangeDesignSystemDemo/Screens/Components/Pages/Lists/ListComponent.swift index 5eb80f54..d816c999 100644 --- a/OrangeDesignSystemDemo/OrangeDesignSystemDemo/Screens/Components/Pages/Lists/ListComponent.swift +++ b/OrangeDesignSystemDemo/OrangeDesignSystemDemo/Screens/Components/Pages/Lists/ListComponent.swift @@ -32,11 +32,11 @@ struct ListVariants: View { var body: some View { VariantEntryItem(title: "screens.components.lists.variant.standard_lists", technicalElement: "ODSListItem()") { ListItemStandardVariant(model: ListItemStandardVariantModel()) - .navigationTitle("screens.components.lists.variant.standard_lists") + .odsNavigationTitle("screens.components.lists.variant.standard_lists".🌐) } VariantEntryItem(title: "screens.components.lists.variant.with_selections", technicalElement: "ODSListItem()") { ListItemSelectionVariant(model: ListItemSelectionVariantModel()) - .navigationTitle("screens.components.lists.variant.with_selections") + .odsNavigationTitle("screens.components.lists.variant.with_selections".🌐) } } }