├── README.md ├── Screen Shot.png ├── UnderLineTextField.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Tejas.Ardeshna.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── poojagupta1331.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Tejas.Ardeshna.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── UnderLineTextField.xcscheme │ │ └── xcschememanagement.plist │ └── poojagupta1331.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── UnderLineTextField ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── mail_icon.imageset │ │ ├── Contents.json │ │ ├── mail_icon.png │ │ ├── mail_icon@2x.png │ │ └── mail_icon@3x.png │ └── password_icon.imageset │ │ ├── Contents.json │ │ ├── password_icon.png │ │ ├── password_icon@2x.png │ │ └── password_icon@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TJTextField.swift └── ViewController.swift └── underLineText .gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/README.md -------------------------------------------------------------------------------- /Screen Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/Screen Shot.png -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/project.xcworkspace/xcuserdata/Tejas.Ardeshna.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/project.xcworkspace/xcuserdata/Tejas.Ardeshna.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/project.xcworkspace/xcuserdata/poojagupta1331.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/project.xcworkspace/xcuserdata/poojagupta1331.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/xcuserdata/Tejas.Ardeshna.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/xcuserdata/Tejas.Ardeshna.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/xcuserdata/Tejas.Ardeshna.xcuserdatad/xcschemes/UnderLineTextField.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/xcuserdata/Tejas.Ardeshna.xcuserdatad/xcschemes/UnderLineTextField.xcscheme -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/xcuserdata/Tejas.Ardeshna.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/xcuserdata/Tejas.Ardeshna.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/xcuserdata/poojagupta1331.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/xcuserdata/poojagupta1331.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /UnderLineTextField.xcodeproj/xcuserdata/poojagupta1331.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField.xcodeproj/xcuserdata/poojagupta1331.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UnderLineTextField/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/AppDelegate.swift -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/mail_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/mail_icon.imageset/Contents.json -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/mail_icon.imageset/mail_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/mail_icon.imageset/mail_icon.png -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/mail_icon.imageset/mail_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/mail_icon.imageset/mail_icon@2x.png -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/mail_icon.imageset/mail_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/mail_icon.imageset/mail_icon@3x.png -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/password_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/password_icon.imageset/Contents.json -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/password_icon.imageset/password_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/password_icon.imageset/password_icon.png -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/password_icon.imageset/password_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/password_icon.imageset/password_icon@2x.png -------------------------------------------------------------------------------- /UnderLineTextField/Assets.xcassets/password_icon.imageset/password_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Assets.xcassets/password_icon.imageset/password_icon@3x.png -------------------------------------------------------------------------------- /UnderLineTextField/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UnderLineTextField/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UnderLineTextField/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/Info.plist -------------------------------------------------------------------------------- /UnderLineTextField/TJTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/TJTextField.swift -------------------------------------------------------------------------------- /UnderLineTextField/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/UnderLineTextField/ViewController.swift -------------------------------------------------------------------------------- /underLineText .gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJTextField/HEAD/underLineText .gif --------------------------------------------------------------------------------