Is Jetpack Compose right option for building Android Apps
Jun 8, 2021
What is a Jetpack Compose?
Jetpack compose is a declarative framework for building native UI that is developed by Android Team. Jetpack is now in Beta. It simplifies the UI development on Android.
Composable functions
Jetpack compose has compose functions that build the UI. Developers can design UI Programmticaly. To create a composable function, just add the @Composable annotation to the function name.
Code Example
@Composable
fun Example(){
Text(text = "Jetpack Compose")
}