This file contains hidden or 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
import SwiftUI | |
import WaterfallGrid | |
let colors: [Color] = [.red, .green, .blue, .orange, .yellow, .pink, .purple] | |
let names = (0...6).map { "Text\($0)" } | |
let items: [Int] = (0...6).map { _ in Int.random(in: 0...6) } | |
struct ContentView: View { | |
var body: some View { | |
NavigationView { |