Skip to content

Commit

Permalink
Update information layout in GamePadViewer
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo committed Aug 16, 2024
1 parent 9e6f19d commit 0b5196e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appendix/GamePadViewer/src/View/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ struct StickView: View {
Text("\(stick.vertical.lastDoubleValue)")
}
GridRow {
Text("radian:")
Text("magnitude:")

Text("\(stick.radian)")
Text("\(stick.magnitude)")
}
GridRow {
Text("magnitude:")
Text("radian:")

Text("\(stick.magnitude)")
Text("\(stick.radian)")
}
}
.frame(width: 200)
Expand Down

0 comments on commit 0b5196e

Please sign in to comment.