Skip to content

Instantly share code, notes, and snippets.

@jobinlawrance
Created November 1, 2020 19:34
Show Gist options
  • Save jobinlawrance/83d70894280dd10c70838910faa2327f to your computer and use it in GitHub Desktop.
Save jobinlawrance/83d70894280dd10c70838910faa2327f to your computer and use it in GitHub Desktop.
inline fun <reified T : Fragment> AppCompatActivity.fragmentFromFactory(): Lazy<T> {
return lazy {
supportFragmentManager.fragmentFactory.instantiate(classLoader, T::class.java.name) as T
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment