{"id":16810858,"url":"https://github.com/johan-dutoit/jvfloatsharp","last_synced_at":"2025-04-11T01:37:30.916Z","repository":{"id":24094161,"uuid":"27481456","full_name":"Johan-dutoit/JVFloatSharp","owner":"Johan-dutoit","description":"JVFloating labels for Xamarin.Android","archived":false,"fork":false,"pushed_at":"2015-10-23T12:07:20.000Z","size":12458,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T22:43:18.992Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Johan-dutoit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-12-03T10:21:31.000Z","updated_at":"2022-01-06T02:52:35.000Z","dependencies_parsed_at":"2022-08-22T10:31:12.782Z","dependency_job_id":null,"html_url":"https://github.com/Johan-dutoit/JVFloatSharp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Johan-dutoit%2FJVFloatSharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Johan-dutoit%2FJVFloatSharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Johan-dutoit%2FJVFloatSharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Johan-dutoit%2FJVFloatSharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Johan-dutoit","download_url":"https://codeload.github.com/Johan-dutoit/JVFloatSharp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248326390,"owners_count":21085097,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-13T10:16:52.314Z","updated_at":"2025-04-11T01:37:30.894Z","avatar_url":"https://github.com/Johan-dutoit.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"JVFloatSharp\n============\nThis is a Xamarin.Android port of [Jared Verdi's JVFloatLabeledTextField](https://github.com/jverdi/JVFloatLabeledTextField), which was directly ported by Johan du Toit [@johan_du_toit](https://twitter.com/johan_du_toit) from the [Android version](https://github.com/wrapp/floatlabelededittext) by Henrik Sandström [@heinrisch](https://twitter.com/Heinrisch)\n\nCredits for the concept to Matt D. Smith ([@mds](http://www.twitter.com/mds)).\n\n\n![Android Version](http://i.imgur.com/ucRd1jm.gif)\n\nhttp://dribbble.com/shots/1254439--GIF-Mobile-Form-Interaction?list=users\n\nGet it on NuGet!\n================\n\nGrab the [jvfloatsharp NuGet package][nuget] using your package manager or by installing with the following command:\n\n    Install-Package jvfloatsharp\n\nUsage\n=====\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cLinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:orientation=\"vertical\"\n    android:layout_width=\"fill_parent\"\n    android:layout_height=\"fill_parent\" \u003e\n  \u003cjvfloatsharp.FloatLabeledEditText\n         android:layout_width=\"match_parent\"\n         android:layout_height=\"wrap_content\"\u003e\n    \u003cEditText\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"This is the hint\" /\u003e\n  \u003c/jvfloatsharp.FloatLabeledEditText\u003e\n\n  \u003c!-- add some padding --\u003e\n  \u003cjvfloatsharp.FloatLabeledEditText\n      android:layout_width=\"match_parent\"\n      android:layout_height=\"wrap_content\"\u003e\n    \u003cEditText\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Username\" /\u003e\n  \u003c/jvfloatsharp.FloatLabeledEditText\u003e\n\n  \u003c!-- password input --\u003e\n  \u003cjvfloatsharp.FloatLabeledEditText\n      android:layout_width=\"match_parent\"\n      android:layout_height=\"wrap_content\"\u003e\n    \u003cEditText\n        android:layout_width=\"match_parent\"\n        android:layout_height=\"wrap_content\"\n        android:hint=\"Password\"\n        android:inputType=\"textPassword\" /\u003e\n  \u003c/jvfloatsharp.FloatLabeledEditText\u003e\n\u003c/LinearLayout\u003e\n```\n\nAlso works with MvvmCross:\n\n```\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cjvfloatsharp.FloatLabeledEditText\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:local=\"http://schemas.android.com/apk/res-auto\"\n  android:layout_width=\"match_parent\"\n  android:layout_height=\"wrap_content\"\u003e\n  \u003cEditText\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"wrap_content\"\n    android:hint=\"This is the hint\"\n    local:MvxBind=\"Text Hello\" /\u003e\n\u003c/jvfloatsharp.FloatLabeledEditText\u003e\n```\n\nStyled By\n=========\n* Marcus Gellemark [Dribbble](http://dribbble.com/Gellermark)\n\n[nuget]: https://www.nuget.org/packages/jvfloatsharp/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohan-dutoit%2Fjvfloatsharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohan-dutoit%2Fjvfloatsharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohan-dutoit%2Fjvfloatsharp/lists"}