is something like this possible? :sweat_smile: ```...
# android
i
is something like this possible? 😅
Copy code
inline fun <T: View, reified U: ViewGroup> T.matchParent() =
    apply {
        layoutParams = U::class.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)
    }