Instead of applying a background
modifier on List, you should apply a listRowBackground
on its rows. For example:
List {
ForEach(selectedSheet, id: \.self) { sheet in
Text(sheet)
.padding(10)
.frame(maxWidth: .infinity)
}
.listRowBackground(Color.clear)
}