Update FloatingLabelSecureField.swift
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) } }
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
FloatingLabelTextField
This Swift Package supports floating label for Text Field and Secure Field in SwiftUI
Installation
Install through Swift Package Manager.
Usage