라이브 룰렛 색상 변경
AS-IS : 10가지 색상 순서 대로 표시 TO-BE : 10가지 색상 중 랜덤 으로 표시
This commit is contained in:
parent
55d35222a9
commit
fe41360f91
|
@ -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, *)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue