Add missing accessibility label to the settings buttons

This commit is contained in:
David Cordero 2022-01-16 17:37:08 +01:00
parent f97b467390
commit 68f143460a
3 changed files with 3 additions and 0 deletions

View File

@ -85,5 +85,6 @@ final class MainTabCoordinator: TabCoordinatable {
@ViewBuilder
func makeSettingsTab(isActive: Bool) -> some View {
Image(systemName: "gearshape.fill")
.accessibilityLabel(L10n.settings)
}
}

View File

@ -127,6 +127,7 @@ struct HomeView: View {
homeRouter.route(to: \.settings)
} label: {
Image(systemName: "gearshape.fill")
.accessibilityLabel(L10n.settings)
}
}
}

View File

@ -104,6 +104,7 @@ struct ServerListView: View {
serverListRouter.route(to: \.basicAppSettings)
} label: {
Image(systemName: "gearshape.fill")
.accessibilityLabel(L10n.settings)
}
}