[ios] Added help to menu and switched some menu icons to system symbols

Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
This commit is contained in:
Yannik Bloscheck
2025-07-18 15:12:54 +02:00
committed by Yannik Bloscheck
parent a5bd24ccdb
commit 5ae0ef626a
5 changed files with 64 additions and 21 deletions

View File

@@ -3,6 +3,7 @@ protocol BottomMenuInteractorProtocol: AnyObject {
func addPlace()
func downloadMaps()
func donate()
func openHelp()
func openSettings()
func shareLocation(cell: BottomMenuItemCell)
func toggleTrackRecording()
@@ -60,6 +61,11 @@ extension BottomMenuInteractor: BottomMenuInteractorProtocol {
delegate?.actionDownloadMaps(.downloaded)
}
func openHelp() {
close()
mapViewController?.openAbout()
}
func openSettings() {
close()
mapViewController?.openSettings()