Created
May 4, 2023 22:50
-
-
Save arriolac/296ea0f021ddf1b58f71ecec93a726a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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