firstTrackOut

This commit is contained in:
dadgam3er 2024-09-04 15:19:19 -04:00
parent 1dd8493997
commit fb5d241a43

View File

@ -38,29 +38,7 @@ fun Greeting(name: String, modifier: Modifier = Modifier) {
modifier = modifier modifier = modifier
) )
} }
@Composable
fun ClockInButton(modifier: Modifier = Modifier) {
Button(
onClick = {
// Handle Clock In action here
},
modifier = modifier
) {
Text(text = "Clock In")
}
}
@Composable
fun ClockOutButton(modifier: Modifier = Modifier) {
Button(
onClick = {
// Handle Clock Out action here
},
modifier = modifier
) {
Text(text = "Clock Out")
}
}
@Preview(showBackground = true) @Preview(showBackground = true)
@Composable @Composable