I simply added TextLabel in scrollview but it is displaying in 1 line only. Without scrollview it is working fine with full height of Label
struct UserDetailView: View {
var userObj:User?
var body: some View {
ScrollView {
VStack {
Text("Hi here is Erick jackson. We need to help you. We will help you. Anything new to learn from you. I am here for that reason.")
.background(Color.orange)
.multilineTextAlignment(.center)
.lineLimit(5)
}
}
.padding(.horizontal,30)
}
}