Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created April 17, 2025 08:51
Show Gist options
  • Save jacobsapps/649ee4288af79807675a1916006ebcf0 to your computer and use it in GitHub Desktop.
Save jacobsapps/649ee4288af79807675a1916006ebcf0 to your computer and use it in GitHub Desktop.
@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