This Swift Package supports floating label for Text Field and Secure Field in SwiftUI
Install through Swift Package Manager.
import FloatingLabelTextField
@State var username = ""
@State var password = ""
var body: some View {
VStack {
FloatingLabelTextField(placeHolder: "Username", text: $username)
FloatingLabelSecureField(placeHolder: "Password", text: $password)
}
}