You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
708 B
22 lines
708 B
package org.mosad.teapod.ui.account |
|
|
|
import android.os.Bundle |
|
import android.view.LayoutInflater |
|
import android.view.View |
|
import android.view.ViewGroup |
|
import androidx.fragment.app.Fragment |
|
import kotlinx.android.synthetic.main.fragment_account.* |
|
import org.mosad.teapod.R |
|
|
|
class AccountFragment : Fragment() { |
|
|
|
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? { |
|
return inflater.inflate(R.layout.fragment_account, container, false) |
|
} |
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { |
|
super.onViewCreated(view, savedInstanceState) |
|
|
|
text_account.text = "This is the Account Fragment" |
|
} |
|
} |