I tried to put some text below IconButton, but I just can't find a way. Instead it just gets beside the IconButton TopAppBar
Column {
TopAppBar(
modifier = modifier,
elevation = 0.dp,
contentColor = MaterialTheme.colors.onSurface,
title = {
Text(text = "Jetpack Compose")
},
actions = {
IconButton(onClick = { }) {
Icon(Icons.Filled.Add, tint = Red)
}
Text(text = "Add")
}
)
}