Step 6. Go to the corresponding Activity or Fragment and define your compose function Go to the corresponding Activity or Fragment where you want to use Jetpack Compose. In my case, it MainActivity.kt and defines a composable function @Composable fun Greeting(){ Text( text = "Hello World!"...
Unlike other cross platform solutions, we don’t lose performance and we are able to use all the native libraries made for Android and iOS Using the actual/expect protocol we can write platform specific code if needed, for example we will use this feature to be able to inherit ou...