Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save arriolac/296ea0f021ddf1b58f71ecec93a726a7 to your computer and use it in GitHub Desktop.
Save arriolac/296ea0f021ddf1b58f71ecec93a726a7 to your computer and use it in GitHub Desktop.
// Copyright 2023 Google LLC.
// SPDX-License-Identifier: Apache-2.0
class MyFragment : Fragment() {
// …
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
) = ComposeView(requireContext()).apply {
setViewCompositionStrategy(
ViewCompositionStrategy.DisposeOnLifecycleDestroyed(
lifecycle = [email protected]
)
)
// …
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment