rtsketo
12/09/2020, 10:53 AMImageView.photo(url: String) = { .. }
photo(url: String) = { .. }
Is there a way to call the second one in the scope of an ImageView like below?
ImageView(context).apply {
...
photo(url)
...
}
dmitriy.novozhilov
12/09/2020, 8:52 PMimport my.super.package.photo as otherPhoto
rtsketo
12/09/2020, 10:45 PM