Hapton Gao
Results
1
comments of
Hapton Gao
struct CollectionExampleView: View { @State var data: [YMHItem] = (1 ... 100).map { YMHItem("Item #\($0)") } var body: some View { CollectionView(data, id: \.id) { element in Text(element.text) .padding() .minWidth(160)...