To display rows and columns of data in a nice layout like a spreadsheet I use a table like the code here ..
Table(array) {
TableColumn("Ticker", value: \\.ticker)
TableColumn("Other", value: \.other)
}
To delete a row from the table the advice is to use a ForEach loop. Since I don’t use a ForEach loop, how do I delete rows from the table ? With this code there is no way to attach a .onDelete modifier or a Button
Any advice would be much appreciated
Thank you