From 41e5c92acffe3d830e6775edf2af67848141509c Mon Sep 17 00:00:00 2001 From: Dule Martins Date: Fri, 19 Jun 2020 09:25:09 -0700 Subject: [PATCH 1/7] Create README.md this is the read me file with the library name --- README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b2a35da --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +#Floating label text field + From 624b1b8efd54abe77dc18a28a4be2580c6ba9169 Mon Sep 17 00:00:00 2001 From: Dule Martins Date: Fri, 19 Jun 2020 09:42:18 -0700 Subject: [PATCH 2/7] Update on README file --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b2a35da..456bdcc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ -#Floating label text field +# Floating label text field +it float the label above the input field when the field is selected and remove the placeholder. When the field loses focus, bring back the placeholder and remove the label if the field is empty. + +## From 82a5943dc6b8a30014e399bc3fea369712057554 Mon Sep 17 00:00:00 2001 From: Dule Martins Date: Fri, 19 Jun 2020 10:47:46 -0700 Subject: [PATCH 3/7] Update README.md --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 456bdcc..698c28b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ # Floating label text field -it float the label above the input field when the field is selected and remove the placeholder. When the field loses focus, bring back the placeholder and remove the label if the field is empty. +It is a text label which appears inside the input field at full font-size. When interacted with, the label “floats” above, making room for the user to input a value -## +## Features +* Float label pattern +* Custom text input +* Text input validation + +## Requirement +* iOS +* compatible using swift From 989b3c6cf4d418f83203620849008e8111ec10ef Mon Sep 17 00:00:00 2001 From: Dule Martins Date: Mon, 22 Jun 2020 17:39:37 +0100 Subject: [PATCH 4/7] update --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 698c28b..cad5703 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# Floating label text field -It is a text label which appears inside the input field at full font-size. When interacted with, the label “floats” above, making room for the user to input a value +# custom floating label style input field for iOS with swift +floating label is a text label which appears inside the input field at full font-size. When interacted with, the label “floats” above, making room for the user to input a value ## Features * Float label pattern From 6eeab5cef8aa864eff454e5fd81a6f4c76f7c92b Mon Sep 17 00:00:00 2001 From: Dule Martins Date: Mon, 22 Jun 2020 18:35:08 +0100 Subject: [PATCH 5/7] update added --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cad5703..d073ac7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# custom floating label style input field for iOS with swift +# Custom floating label style input field for iOS with swift floating label is a text label which appears inside the input field at full font-size. When interacted with, the label “floats” above, making room for the user to input a value ## Features @@ -10,3 +10,10 @@ floating label is a text label which appears inside the input field at full font * iOS * compatible using swift +## Get started with custom floating label style input +* Create a swift file to hold our customization code. +* We create our text field in our storyboard and assign it’s class to our custom 'UITextField' + +[To read more on this and how to impleament][https://medium.com/sprinthub/creating-a-custom-floating-label-style-text-field-in-swift-f9f6aeaf39fe] + +## Contribution From 25039fc5e805df5633fbb95ab0f2af6b84928435 Mon Sep 17 00:00:00 2001 From: Dule Martins Date: Mon, 22 Jun 2020 18:47:16 +0100 Subject: [PATCH 6/7] update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d073ac7..a3c78ca 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,6 @@ floating label is a text label which appears inside the input field at full font * Create a swift file to hold our customization code. * We create our text field in our storyboard and assign it’s class to our custom 'UITextField' -[To read more on this and how to impleament][https://medium.com/sprinthub/creating-a-custom-floating-label-style-text-field-in-swift-f9f6aeaf39fe] +[To read more on this and how to impleament](https://medium.com/sprinthub/creating-a-custom-floating-label-style-text-field-in-swift-f9f6aeaf39fe) ## Contribution From 1034db91b77d7847827b676186c74118997b4e22 Mon Sep 17 00:00:00 2001 From: Dule Martins Date: Mon, 22 Jun 2020 18:57:05 +0100 Subject: [PATCH 7/7] update added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a3c78ca..15bc4cc 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,4 @@ floating label is a text label which appears inside the input field at full font [To read more on this and how to impleament](https://medium.com/sprinthub/creating-a-custom-floating-label-style-text-field-in-swift-f9f6aeaf39fe) ## Contribution +The code is on [Github](https://github.com/quacklabs/FloatingLabelInputSwift). feel free to fork, modify and make it better.