- EditDrawableText can be used to Show/Hide Password
 - Left/Right Drawables can be clicked to make custom events like Request OTP etc.
 - All type of EditText Properties are possible in EditDrawableText
 
- Add it in your root build.gradle at the end of repositories:
 
    repositories {
      maven { url 'https://jitpack.io' }
    }- Add this in your app's build.gradle
 
	 implementation 'com.github.MindorksOpenSource:EditDrawableText:2.0'- To use this in XML File, use
 
  <com.mindorks.editdrawabletext.EditDrawableText
        android:id="@+id/drawableEditTextLeft"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawableLeft="@drawable/ic_remove_red_eye_black_24dp"
        android:hint="Click the Drawables"
        android:inputType="text"
        android:textAlignment="center"
        />- Make the drawable clickable in Activity file,
 
  drawableEditText.setDrawableClickListener(object : OnDrawableClickListener {
            override fun onClick(target: DrawablePosition) {
                when (target) {
                    DrawablePosition.RIGHT -> //YOUR_LOGIC
                    DrawablePosition.LEFT -> //YOUR_LOGIC
                    DrawablePosition.TOP -> //YOUR_LOGIC
                    DrawablePosition.BOTTOM -> //YOUR_LOGIC
                }
            }      
    })
- You can also add an option so that the drawable is hidden by default and only shows when there is some text available in EditDrawableText
 
  <com.mindorks.editdrawabletext.EditDrawableText
           ....
           app:isDrawableShownWhenTextIsEmpty="false"
        />or
  drawableEditText.hasDrawable(/**YOUR VALUE**/)
When the value is false, then the drawable is hidden by default and vice versa
Check out Mindorks awesome open source projects here
   Copyright (C) 2018 MINDORKS NEXTGEN PRIVATE LIMITED
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
       http://www.apache.org/licenses/LICENSE-2.0
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
All pull requests are welcome, make sure to follow the contribution guidelines when you submit pull request.




