Created
November 15, 2016 13:45
-
-
Save sembozdemir/4fe94a1472740c33c64e743200b6ee1a to your computer and use it in GitHub Desktop.
ToDoKotlin - ViewExtensions.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun EditText.asString(): String = this.text.toString() | |
fun EditText.clear() { | |
setText("") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment