Skip to content

Instantly share code, notes, and snippets.

@skywall
Created October 25, 2020 12:22
Show Gist options
  • Save skywall/67e47c0e6802c3a2f625a4bcf91d1d75 to your computer and use it in GitHub Desktop.
Save skywall/67e47c0e6802c3a2f625a4bcf91d1d75 to your computer and use it in GitHub Desktop.
HomeFragmentInjection
@Subcomponent(
modules = [HomeFragmentModule::class]
)
interface HomeFragmentComponent {
fun inject(homeFragment: HomeFragment)
}
@Module
class HomeFragmentModule(private val homeFragment: HomeFragment) {
@Provides
fun homeView(): HomeView = homeFragment
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment