Skip to content

Instantly share code, notes, and snippets.

@EmmanuelGuther
Created June 1, 2018 10:58
Show Gist options
  • Save EmmanuelGuther/23e053c330f80067f3bbee9ca7fe21b3 to your computer and use it in GitHub Desktop.
Save EmmanuelGuther/23e053c330f80067f3bbee9ca7fe21b3 to your computer and use it in GitHub Desktop.
Kotlin extension function to easy change snackbar text color
fun Snackbar.setTextColor(color: Int): Snackbar {
val tv = view.findViewById(android.support.design.R.id.snackbar_text) as TextView
tv.setTextColor(color)
return this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment