Skip to content

Instantly share code, notes, and snippets.

@vontell
Created January 30, 2018 19:30
Show Gist options
  • Save vontell/cec50ec526ec0bcbc970c844f4270f2f to your computer and use it in GitHub Desktop.
Save vontell/cec50ec526ec0bcbc970c844f4270f2f to your computer and use it in GitHub Desktop.
002 Extensions using Picasso
private val Context.picasso: Picasso
get() = Picasso.with(this)
private fun CircleImageView?.load(path: String) {
this!!.context.picasso.load(path).into(this)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment