Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

102
Vistas
mysterious unwanted space got added in Text view

It's simpler to just read the code and see the end result in the image, my question is why is Actuation Force and Bottom-out Force not aligned with the text views above them? In Actuation Force text view, there seems to be some mysterious padding added to its left while Bottom-out Force does not have it?

enter image description here

VStack {
    VStack {
        HStack {
            VStack(alignment: .leading, spacing: 5) {
                Text("**Pre-travel Distance**")
                Text("how far down the key must be pressed for it to actuate")
            }
            .frame(width: 250)
            .background(.red)
            SwitchPropertyCircularView(upperBoundValue: theSwitch.preTravelDistance!, unit: "mm")
        }
        .background(.blue)

        HStack {
            VStack(alignment: .leading, spacing: 5) {
                Text("**Total Travel Distance**")
                Text("how far down the key must be pressed for it to bottom out")
            }
            .frame(width: 250)
            .background(.red)
            SwitchPropertyCircularView(upperBoundValue: theSwitch.totalTravelDistance!, unit: "mm")
        }
        .background(.blue)
    }
    .frame(width: 380)
    .background(Color.gray)

    VStack {
        HStack {
            VStack(alignment: .leading, spacing: 5) {
                Text("**Actuation Force**")
                Text("the force needed to register a keypress")
            }
            .frame(width: 250)
            .background(.red)
            SwitchPropertyCircularView(upperBoundValue: Double(theSwitch.actuationForce!), unit: "gf")
        }
        .background(.blue)

        HStack {
            VStack(alignment: .leading, spacing: 5) {
                Text("**Bottom-out Force**")
                Text("the force needed for a switch to bottom out")
            }
            .frame(width: 250)
            .background(.red)
            SwitchPropertyCircularView(upperBoundValue: Double(theSwitch.bottomOutForce!), unit: "gf")
        }
        .background(.blue)
    }
    .frame(width: 380)
    .background(Color.gray)
}
over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

On "Bottom-out Force," it looks like the first line is wide enough before it wraps words that it pushes the Text width to the maximum width of the view. On the others, it gets wrapped with shorter line lengths, and then ends up adding padding to center the text within the view.

You can fix this by adding a .leading alignment to your VStack. For example:

VStack(alignment: .leading, spacing: 5) {
  Text("**Actuation Force**")
  Text("the force needed to register a keypress")
}
.frame(width: 250, alignment: .leading) //<-- Here

Repeat for each VStack that shares the same qualities.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda