This is my View:
@State private var descriptionService: String = "Hello Tim it doesnt work at all"
TextField("description".localized, text: $descriptionService, axis: .vertical)
.multilineTextAlignment(.center)
.padding()
.lineLimit(3...7)
And this is the result:
According to the axis
parameter the text field should be multilined, but it is not. Why is this?