项目作者: blorenzo10

项目描述 :
Custom underline TextField using SwiftUI
高级语言: Swift
项目地址: git://github.com/blorenzo10/underlinetextfield.git
创建时间: 2020-06-28T22:32:14Z
项目社区:https://github.com/blorenzo10/underlinetextfield

开源协议:

下载


Custom Underline TextField

Using SwiftUI

Simple reusable underline text field. You can use it with or without an icon image.

alt text

For use just create an instance of the struct UnderlineTextFieldView like following in your content view:

  1. With icon
    1. UnderlineTextFieldView(
    2. text: $userEmail,
    3. textFieldView: TextField("", text: $userEmail),
    4. placeholder: "Email Address",
    5. imageName: emailIconName)
  2. Without icon
    1. UnderlineTextFieldView(
    2. text: $userEmail,
    3. textFieldView: TextField("", text: $userEmail),
    4. placeholder: "Email Address")

If you have any questions please feel free to reach me out on twitter: b_lorenzo10