I have a problem where the elements of the grid are overlapping.
My code is:
var body: some View {
ScrollView {
VStack(alignment: .leading) {
Group {
Text("Letters en woorden")
.font(.title)
Grid(tracks: 3) {
Text("_eererer_")
Text("_eererer__")
Text("_eererer_")
Text("_eererer_")
Text("_eererer_")
Text("_eererer_")
}
// ...
}
}.padding(.bottom)
}.navigationTitle("Morse")
.padding(.horizontal)
}
This is how my view look

I have a problem where the elements of the grid are overlapping.
My code is:
This is how my view look
