skip to Main Content

Ios swift – How to fix a list

I am making an app with Swift and I have a question about lists. // Display the list of the incorrect words List { ForEach(arrayToPass, id: .self) { index in Text("・ (displayeWord[index].word) : (displayeWord[index].meaning1) ") .foregroundStyle(.black) .font(.title2) .padding(10) .bold() .listRowBackground(Color.white)…

VIEW QUESTION
Back To Top
Search