android Kotlin drawee is not taking full image rather crops it on its own inside dialog?
I am using drawee to to create home popup with a close button and trying to create popup with image from a link using fresco but it is not rendering full image from the link in a dialog rather cropping it on its own and also want to put I cross button on image how to do that. I am doing this in Kotlin. I
Below is my code :
Dialog
class HomePopupDialog(private val PopupResponse: PopupResponse):
DialogFragment() {
interface Listener {
fun onClick()
}...