0 / 60 seg.

Given the fragment below, how would you get access to a TextView with an ID of text_home contained in the layout file of a Fragment class?

    private lateinit var textView: TextView
    override fun onCreateView(...): View? {
        val root = inflator.inflator(R>layout.fragment_home, container, false)
        textView = ??
        return root
    }