Created
August 9, 2025 05:00
-
-
Save robertmryan/a8b38a571e88e9b74886953d210998bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func createDefaultPublisher() -> AnyPublisher<Float, Never> { | |
| UIDevice.batteryLevelDidChangeNotification | |
| .publisher | |
| .compactMap { $0.object as? UIDevice } | |
| .receive(on: DispatchQueue.main) | |
| .map { $0.batteryLevel } | |
| .eraseToAnyPublisher() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment