Skip to content

Instantly share code, notes, and snippets.

@carotkut94
Created October 21, 2021 10:06
Show Gist options
  • Save carotkut94/3cd552a2f33cf3ea1ddf1f3f6a2e77c2 to your computer and use it in GitHub Desktop.
Save carotkut94/3cd552a2f33cf3ea1ddf1f3f6a2e77c2 to your computer and use it in GitHub Desktop.
class DemoFragment: Fragment(){
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View {
return ComposeView(requireActivity()).apply {
setContent {
SampleTheme {
Greeting(name = "Hello Android")
}
}
}
}
}
@Composable
fun Greeting(name: String) {
Text(text = "Hello $name!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment