Skip to content

Instantly share code, notes, and snippets.

View grinder81's full-sized avatar

Mamun grinder81

  • DoorDash
  • Canada
View GitHub Profile
import SwiftUI
struct Row: Identifiable {
let id = UUID()
let value: Int
}
struct TopListView: View {
@State var rows: [Row] = [
.init(value: 1),