Is there a possibility to have a mixture of LazyVGrid and a List, with alternating two Grid items and two List items for example?
struct ContentView: View { var body: some View { List{ LazyVGrid(columns: [GridItem(.flexible()), GridItem(.flexible())], content: { Text("Placeholder") Text("Placeholder") }) Text("Text") Text("Text") } } }
2.1m questions
2.1m answers
60 comments
57.0k users