Writing Your First Jetpack Compose App
In Jetpack Compose most of the time the root element is usually a Column, unless we want to apply a theme to the layout, then we can wrap the Column in a MaterialTheme element.
January 15, 2020
In Jetpack Compose most of the time the root element is usually a Column, unless we want to apply a theme to the layout, then we can wrap the Column in a MaterialTheme element.
To use Jetpack Compose, we first have to use the latest Canary (less stable) version of Android Studio
Jetpack Compose is built around composable functions. These functions let you define your app’s UI programmatically by describing its shape and data dependencies, rather than focusing on the process of the UI’s construction.
Recent Comments