ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Introducing Jetpack Compose into an existing project.

Ziv Kesten
ProAndroidDev
Published in
5 min readDec 20, 2021

--

Photo by Ziv Kesten

Jetpack Compose vs XML

Start small

What is a Composable?

@Composable
private fun ClickableTextButton(
text: String,
onClick: () -> Unit
)

Compose is similar in this way.

First Piece of the puzzle

Let's break that down:

@Composable
fun ClickableTextButton(...) {
Box(...) {
TextButton(...) {
Text(...)
}
}
}
@Composable
fun MyComposable(content: @Composable () -> Unit)

The Box

From the google developers website

The Text Button

TextButton(
onClick = onClick,
modifier = Modifier
.padding(start = 15.dp, end = 15.dp, bottom = 20.dp)
.fillMaxWidth()
)

The Text

Text(
text = text,
fontFamily = latoFamily,
fontWeight = FontWeight.Normal,
fontSize = 14.sp,
color = colorResource(id = R.color.my_color)
)

Fonts

val latoFamily = FontFamily(
Font(R.font.lato_bold, FontWeight.Bold),
Font(R.font.lato_light, FontWeight.Light),
Font(R.font.lato_regular, FontWeight.Normal),
)

Now our screen looks like this

That's it for now!

--

--

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Ziv Kesten

I am a mobile developer, an android enthusiast and a drone lover (Secretly, don’t tell the wife)

No responses yet

Write a response