From 3a800f07e30e2a650fc17c412601dce12001a283 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Thu, 17 Feb 2022 00:10:28 +0100 Subject: [PATCH] [ios] Automatically switch CarPlay dark/light mode based on the system notification Signed-off-by: Alexander Borsuk --- iphone/Maps/Classes/CarPlay/CarPlayService.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/iphone/Maps/Classes/CarPlay/CarPlayService.swift b/iphone/Maps/Classes/CarPlay/CarPlayService.swift index 5e031d7070..e2dd41cca8 100644 --- a/iphone/Maps/Classes/CarPlay/CarPlayService.swift +++ b/iphone/Maps/Classes/CarPlay/CarPlayService.swift @@ -304,6 +304,11 @@ extension CarPlayService: CPSessionConfigurationDelegate { limitedUserInterfacesChanged limitedUserInterfaces: CPLimitableUserInterface) { } + @available(iOS 13.0, *) + func sessionConfiguration(_ sessionConfiguration: CPSessionConfiguration, + contentStyleChanged contentStyle: CPContentStyle) { + window?.overrideUserInterfaceStyle = contentStyle == .light ? .light : .dark + } } // MARK: - CPMapTemplateDelegate implementation