{"id":22612332,"url":"https://github.com/utsavdotpro/materialedittextlibrary","last_synced_at":"2026-05-03T06:40:45.430Z","repository":{"id":115297521,"uuid":"343907502","full_name":"utsavdotpro/MaterialEditTextLibrary","owner":"utsavdotpro","description":"Advance EditText with features like required data validation. Built with Material.io components","archived":false,"fork":false,"pushed_at":"2021-08-03T16:58:27.000Z","size":165,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-28T23:46:09.486Z","etag":null,"topics":["android","android-library","edittext","java","material-ui"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/utsavdotpro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-02T20:43:54.000Z","updated_at":"2022-01-31T20:55:34.000Z","dependencies_parsed_at":"2023-12-04T09:15:10.666Z","dependency_job_id":null,"html_url":"https://github.com/utsavdotpro/MaterialEditTextLibrary","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/utsavdotpro/MaterialEditTextLibrary","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utsavdotpro%2FMaterialEditTextLibrary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utsavdotpro%2FMaterialEditTextLibrary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utsavdotpro%2FMaterialEditTextLibrary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utsavdotpro%2FMaterialEditTextLibrary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utsavdotpro","download_url":"https://codeload.github.com/utsavdotpro/MaterialEditTextLibrary/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utsavdotpro%2FMaterialEditTextLibrary/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32560913,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["android","android-library","edittext","java","material-ui"],"created_at":"2024-12-08T17:12:18.383Z","updated_at":"2026-05-03T06:40:45.425Z","avatar_url":"https://github.com/utsavdotpro.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![](https://jitpack.io/v/u-barnwal/MaterialEditTextLibrary.svg)](https://jitpack.io/#u-barnwal/MaterialEditTextLibrary)\n# MaterialEditText\nAdvance EditText with features like required data validation. Built with Material.io components\n\n## Implementation\n**Step 1:** Add to project level build.gradle\n\n    allprojects {\n\t\trepositories {\n\t\t\t...\n\t\t\tmaven { url 'https://jitpack.io' }\n\t\t}\n\t}\n\n**Step 2:** Add to app level build.gradle\n\n\tdependencies {\n\t    implementation 'com.github.u-barnwal:MaterialEditTextLibrary:VERSION'\n\t}\n## How to use\n**Create view**\n\n    \u003ccom.isolpro.library.materialedittext.MaterialEditText\n      android:id=\"@+id/metEmail\"\n      android:layout_width=\"match_parent\"\n      android:layout_height=\"wrap_content\"\n      app:met_boxBackgroundColor=\"@color/white\"\n      app:met_boxBackgroundMode=\"outline\"\n      app:met_enabled=\"true\"\n      app:met_errorMessage=\"Email can't be empty!\"\n      app:met_hint=\"Email\"\n      app:met_inputType=\"text\"\n      app:met_lines=\"1\"\n      app:met_required=\"true\"\n      app:met_text=\"dummy@domain.com\" /\u003e\n\n**All the attributes can also be set using their Setter functions**\n\n**Validating EditTexts**  \nYou need to make to set `required` to true for the fields that you want to validate.\n\n    MaterialEditText metEmail = findViewById(R.id.metEmail);\n\n    MaterialEditText.validateEditTexts(metEmail); // you can pass any no. of MaterialEditTexts here\n\n**Validating with OnError callback**  \n\n    MaterialEditText metEmail = findViewById(R.id.metEmail);\n\n    MaterialEditText.validateEditTexts(met -\u003e {\n      Toast.makeText(this, \"Some required fields are empty\", Toast.LENGTH_LONG).show();\n    }, metEmail); // you can pass any no. of MaterialEditTexts here\n\nSee [sample app](\"./app/src/main\")\n\n## Features\n\n - No need to enable/disabled errors separately\n - Hassle free error handling\n - Validate fields in bulk\n - Define everything right from XML\n - Lesser lines of code\n - Pre-optimized\n - Easy to use\n - Lightweight\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futsavdotpro%2Fmaterialedittextlibrary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futsavdotpro%2Fmaterialedittextlibrary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futsavdotpro%2Fmaterialedittextlibrary/lists"}