this is my code
HStack {
Text("\(fitnessData.Progress)/")
Text("2000 KCAL")
}
can any one say how to delete the spaces between 200/_ 2000KCAL
this is my code
HStack {
Text("\(fitnessData.Progress)/")
Text("2000 KCAL")
}
can any one say how to delete the spaces between 200/_ 2000KCAL
You can either:
HStack(spacing: 0) {
Text("\(fitnessData.Progress)/2000 KCAL")
Thank You