라이브 룰렛 색상 변경

AS-IS : 10가지 색상 순서 대로 표시
TO-BE : 10가지 색상 중 랜덤 으로 표시
This commit is contained in:
Yu Sung 2023-12-26 22:25:44 +09:00
parent 55d35222a9
commit fe41360f91
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ struct SpinWheelView: View {
init(data: [Double], labels: [String], colors: [Color]) { init(data: [Double], labels: [String], colors: [Color]) {
self.data = data self.data = data
self.labels = labels self.labels = labels
self.colors = colors self.colors = colors.shuffled()
} }
@available(macOS 10.15.0, *) @available(macOS 10.15.0, *)