Skip to content

Instantly share code, notes, and snippets.

@plnice
Created February 1, 2022 20:01
Show Gist options
  • Save plnice/66dde738abd76c1e00e083568f5b15c7 to your computer and use it in GitHub Desktop.
Save plnice/66dde738abd76c1e00e083568f5b15c7 to your computer and use it in GitHub Desktop.
@AndroidEntryPoint
class MainActivity {
@Inject
lateinit var customTabs: CustomTabs
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
CompositionLocalProvider(LocalCustomTabs provides customTabs) {
...
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment