Created
April 17, 2025 08:51
-
-
Save jacobsapps/649ee4288af79807675a1916006ebcf0 to your computer and use it in GitHub Desktop.
This file contains 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
@State private var rotationAngle: Angle = .degrees(0) | |
// ... | |
.task { | |
for await angle in LocationManager.shared.rotationAngleStream { | |
rotationAngle = Angle.degrees(angle) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment