Skip to content

Instantly share code, notes, and snippets.

@svinouze
Last active November 5, 2020 13:51
Show Gist options
  • Save svinouze/45a9f45ebdc95dda5c6019722bea283b to your computer and use it in GitHub Desktop.
Save svinouze/45a9f45ebdc95dda5c6019722bea283b to your computer and use it in GitHub Desktop.
class FabulousActivity : Activity() {
companion object {
fun newIntent(context: Context): Intent = Intent(context, FabulousActivity::class.java)
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// Commit FabulousFragment instance into FragmentManager
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment