Por fin luego de mucho batallar ya hallamos el resultado de esta dificultad que ciertos lectores de esta web presentan. Si tienes algún detalle que aportar puedes aportar tu información.
Solución:
Un enfoque general para usar opciones de tamaño de fuente estándar y pesos que funcionan con SwiftUI TextField. Por ejemplo:
TextField("Name", text: $name)
.font(Font.headline.weight(.light))
Opciones de tamaño estándar disponibles (de menor a mayor):
.caption
.footnote
.subheadline
.callout
.body
.headline
.title
.largeTitle
Pesos de fuente estándar disponibles (del más ligero al más pesado):
.ultralight
.thin
.light
.regular
.medium
.semibold
.bold
.heavy
.black
import SwiftUI
struct ContentView: View
@State var TextValue: String = "Hello"
var body: some View
VStack
TextField("placeholder", text: $TextValue)
.padding(.horizontal, 50)
.font(.system(size: 30, weight: .heavy, design: .default))
struct ContentView_Previews: PreviewProvider
static var previews: some View
ContentView()
TextField("Name", text: $name)
.font(Font.body.bold())
Aquí tienes las comentarios y valoraciones
Si aceptas, tienes la habilidad dejar un tutorial acerca de qué te ha impresionado de este post.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)