Created
November 4, 2019 14:34
-
-
Save AndSky90/7ed1fa5f7f1794f3d585bbae002e8645 to your computer and use it in GitHub Desktop.
This file contains 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
var text: String | |
get() = editText.text.toString() | |
set(value) { | |
editText.setText(value, TextView.BufferType.EDITABLE) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment