How do i separate the text and the button
Here’s my code:
@Composable @Preview fun App() { MaterialTheme { Text("Onemintimer") Clock(modifier = Modifier .aspectRatio(1.0f) .padding(100.dp)) } }
Use a Column { } layout
Column { }