now I have ``` fun <T : View> T.matchParent(...
# android
i
now I have
Copy code
fun <T : View> T.matchParent() =
    apply {
        val lp = layoutParams
        lp.width = MATCH_PARENT
        lp.height = MATCH_PARENT
        layoutParams = lp
    }