A simple SwiftUI FloatingLabelTextField component which shows floating lable for TextField.
Install through Swift Package Manager.
@State var name = ""
@State var age = ""
var body: some View {
VStack {
FloatingLabelTextField(placeHolder: "Input your name", text: $name)
FloatingLabelTextField(placeHolder: "Input your age", text: $age)
}
}
- For SecureField