Replies: 3 comments
-
Paint and TextPaint builders inline fun paint(flags: Int = 0, configure: Paint.() -> Unit): Paint = Paint(flags).apply(configure)
inline fun textPaint(flags: Int = 0, configure: Paint.() -> Unit): Paint = TextPaint(flags).apply(configure)} |
Beta Was this translation helpful? Give feedback.
0 replies
This comment has been hidden.
This comment has been hidden.
-
EditText extensions: fun EditText.text(): String? = this.text?.toString()
fun EditText.clear() {
this.setText("")
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Vote for the candidates that should be added to
core-ktx
in your opinionBeta Was this translation helpful? Give feedback.
All reactions