```override fun onCreateView(inflater: LayoutInfla...
# android
n
Copy code
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                              savedInstanceState: Bundle): View? {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_login, container, false)
    }
yeah I see... Bundle here shoulde be nullable, i.e
Bundle?