Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jverdi/JVFloatLabeledTextField
UITextField subclass with floating labels - inspired by Matt D. Smith's design: http://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users
https://github.com/jverdi/JVFloatLabeledTextField
carthage floating-labels forms objective-c pod ui-components uikit
Last synced: about 1 month ago
JSON representation
UITextField subclass with floating labels - inspired by Matt D. Smith's design: http://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users
- Host: GitHub
- URL: https://github.com/jverdi/JVFloatLabeledTextField
- Owner: jverdi
- License: mit
- Created: 2013-10-01T04:31:03.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2023-04-17T14:38:05.000Z (over 1 year ago)
- Last Synced: 2024-10-29T11:22:25.721Z (2 months ago)
- Topics: carthage, floating-labels, forms, objective-c, pod, ui-components, uikit
- Language: Objective-C
- Size: 392 KB
- Stars: 7,196
- Watchers: 183
- Forks: 732
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - JVFloatLabeledTextField - UITextField subclass with floating labels. (UI / TextField & TextView)
- awesome-cocoa - JVFloatLabeledTextField
- awesome-iOS-Library-Curator - JVFloatLabeledTextField
- awesome-ios-star - JVFloatLabeledTextField - UITextField subclass with floating labels. (UI / TextField & TextView)
- awesome - JVFloatLabeledTextField - UITextField subclass with floating labels - inspired by Matt D. Smith's design: https://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users (iOS / JVFloatLabeledTextField)
- awesome - JVFloatLabeledTextField - UITextField subclass with floating labels - inspired by Matt D. Smith's design: https://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users (iOS / JVFloatLabeledTextField)
README
JVFloatLabeledTextField
=======================
[![Build Status](https://travis-ci.org/jverdi/JVFloatLabeledTextField.svg?branch=master)](https://travis-ci.org/jverdi/JVFloatLabeledTextField)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](#carthage)
[![Pod Version](https://img.shields.io/cocoapods/v/JVFloatLabeledTextField.svg)](http://cocoadocs.org/docsets/JVFloatLabeledTextField/)
[![Pod Platform](https://img.shields.io/cocoapods/p/JVFloatLabeledTextField.svg)](http://cocoadocs.org/docsets/JVFloatLabeledTextField/)
[![Pod License](https://img.shields.io/cocoapods/l/JVFloatLabeledTextField.svg)](http://jaredverdi.mit-license.org)
[![CocoaPods](https://img.shields.io/cocoapods/dt/JVFloatLabeledTextField.svg)](https://github.com/jverdi/JVFloatLabeledTextField)`JVFloatLabeledTextField` is the first implementation of a UX pattern that has come to be known the **"Float Label Pattern"**.
Due to space constraints on mobile devices, it is common to rely solely on placeholders as a means to label fields.
This presents a UX problem, in that, once the user begins to fill out a form, no labels are present.This UI component library, which includes both a `UITextField` and `UITextView` subclass, aims to improve the user experience by having placeholders transition into floating labels that hover above the fields after they are populated with text.
Credits for the concept to Matt D. Smith ([@mds](https://twitter.com/mds)), and his [original design](https://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users):
![Matt D. Smith's Design](http://dribbble.s3.amazonaws.com/users/6410/screenshots/1254439/form-animation-_gif_.gif)
The component is officially supported for iOS 9 and greater.
Getting started via CocoaPods
=============================
```
sudo gem install cocoapods
```Create a ```Podfile``` in your project directory:
```
pod init
```Add the following to your ```Podfile``` project's target:
```
pod 'JVFloatLabeledTextField'
```Then run CocoaPods with ```pod install```.
Finally, include ```JVFloatLabeledTextField.h``` and ```JVFloatLabeledTextView.h``` in your project.
Getting started via Carthage
============================
```
brew update
brew install carthage
```Create a ```Cartfile``` in your project directory that contains:
```
github "jverdi/JVFloatLabeledTextField"
```Then run carthage with ```carthage update``` and add ```JVFloatLabeledText.framework``` to your project from the ```Carthage/Build/iOS``` directory.
Finally, include ```JVFloatLabeledText.h``` in your project:
```
#import
```Getting started via SPM (Xcode 11+)
============================Click `File` -> `Swift Packages` -> `Add Package Dependency`, enter [JVFloatLabeledText repo's URL](https://github.com/jverdi/JVFloatLabeledTextField).
After select the package, you can choose the dependency type (tagged version, branch or commit). Then Xcode will setup all the stuff for you.
If you're a framework author and use JVFloatLabeledTextField as a dependency, update your `Package.swift` file:
```swift
let package = Package(
dependencies: [
.package(url: "https://github.com/jverdi/JVFloatLabeledTextField", from: "1.2.2")
],
)
```Additional References
=======================
[How the Float Label Pattern Started](http://mds.is/float-label-pattern/) - Matt D. Smith
[Float Label Pattern](http://bradfrost.com/blog/post/float-label-pattern/) - Brad Frost
[Material Design - Floating Labels](http://www.google.com/design/spec/components/text-fields.html#text-fields-floating-labels) - GooglePorts and Alternate Implementations
=====================================
[Android](https://github.com/wrapp/floatlabelededittext) - Henrik Sandström
[Android](https://github.com/weddingparty/AndroidFloatLabel) - Kaushik Gopal
[Android](https://github.com/KevinJ90825/FloatLabelPattern) - Kevin Johnson
[Xamarin.iOS](https://github.com/gshackles/FloatLabeledEntry) - Greg Shackles
[Xamarin.Android](https://github.com/Johan-dutoit/JVFloatSharp) - Johan du Toit
[CSS](http://snook.ca/archives/html_and_css/floated-label-pattern-css) Jonathan Snook
[JQuery / Zepto.js](https://github.com/maman/JVFloat.js) - Achmad Mahardi
[JQuery](https://github.com/m10l/FloatLabel.js) - Mike Mitchell
[AngularJS](https://github.com/dmackerman/angular-better-placeholders) - Dave Ackerman
[Bootstrap plugin](https://github.com/fauxparse/bootstrap-floating-labels) - Matt Powell
[JavaFX](https://github.com/andytill/floaty-field) - Andy Till
[Swift](https://github.com/dirkfabisch/B68FloatingLabelTextField) - Dirk Fabisch
[Swift](https://github.com/FahimF/FloatLabelFields) - Fahim Farook
[Swift](https://github.com/kNeerajPro/CGFLoatingUIKit) - Neeraj Kumar
[Swift](https://github.com/varshylmobile/VMFloatLabel) - Jimmy Jose
[Swift](https://github.com/Skyscanner/SkyFloatingLabelTextField) - Skyscanner (Daniel Langh, Gergely Orosz, Raimon Lapuente)
[ObjC](https://github.com/ArtSabintsev/UIFloatLabelTextField) - Arthur Ariel Sabintsev
[ObjC](https://github.com/iwasrobbed/RPFloatingPlaceholders) - Rob Phillips
[4D](http://forums.4d.fr/Post/EN/15995553/0/0/) - Maurice Inzirillo
[Appcelerator Titanium](https://github.com/TheSmiths-Widgets/ts.floatlabelfield) - The Smiths
[B4i](https://www.b4x.com/android/forum/threads/floatlabelededittext-iui8.64096/#post-405516) - Erel Uziel
Added a port? Let me know - [@jverdi](https://twitter.com/jverdi)