Created
September 20, 2017 15:37
-
-
Save edwardharks/e76b739003d1b249564c8372e9f73ada to your computer and use it in GitHub Desktop.
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
| class SomeCustomView : View(...) { | |
| private val picasso by viewDependency { picasso() } | |
| fun bindData(imageUrl: String) { | |
| picasso.load(imageUrl).into(...) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment