// SecretMessage Example // Source code file: WelcomeFragment.kt package it372.secretmessage import android.os.Bundle import androidx.fragment.app.Fragment import android.view.LayoutInflater import android.view.View import android.view.ViewGroup import android.widget.Button import androidx.navigation.findNavController class WelcomeFragment : Fragment( ) { override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? { // Inflate the layout for WelcomeFragment. val view = inflater.inflate(R.layout.fragment_welcome, container, false) } }