blorenzo10 / underlinetextfield

Custom underline TextField using SwiftUI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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
UnderlineTextFieldView(
                    text: $userEmail,
                    textFieldView: TextField("", text: $userEmail),
                    placeholder: "Email Address",
                    imageName: emailIconName)
  1. Without icon
UnderlineTextFieldView(
                    text: $userEmail,
                    textFieldView: TextField("", text: $userEmail),
                    placeholder: "Email Address")

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

About

Custom underline TextField using SwiftUI


Languages

Language:Swift 100.0%