I would like to keep the border at the bottom part only in UITextField. But I don\'t know how we can keep it on the bottom side.
UITextField
Can you please advise m
in SwiftUI, there is a View called Divider that is perfectly matched for this. You can add it below any view by embedding them into a simple VStack:
View
Divider
VStack
VStack { Text("This could be any View") Divider() }