this works: ``` override fun onCreateView(inflater...
# android
a
this works:
Copy code
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        val binding = DataBindingUtil.inflate<MainFragmentBinding>(inflater, R.layout.main_fragment, container, false)
        binding.username = userSession.login
        return binding.root
    }