How's this: ```private fun ViewManager.hintUi(cont...
# anko
s
How's this:
Copy code
private fun ViewManager.hintUi(context: Context) {

    val viewManager = this
    val component = HintUI()
    addView(component.createView(
            AnkoContext.create(context)),
            ViewGroup.LayoutParams(matchParent, matchParent)
    )
}