I have a TextField and Text next in HStack Sections. There is a large empty space between them and I can not figure out how to remove it.
VStack{
Section {
HStack {
TextField("Kohalik raha", text: $localMoney)
.multilineTextAlignment(.center)
Text("GEL")
.multilineTextAlignment(.leading)
}
}
Section {
Text("\(money, specifier: "%.2f") EUR")
}
Section {
HStack {
TextField("Kurss", text: $rate )
.multilineTextAlignment(.center)
Text("Kurss")
.multilineTextAlignment(.leading)
}
}
}
![[Picture from app]](https://gamingcommission.club/i.sstatic.net/FAxCt.png)
