mirror of
https://github.com/Myzel394/Alibi.git
synced 2025-06-18 23:05:26 +02:00
fix: Use onSurface color
This commit is contained in:
parent
3aa4caf9ed
commit
750f6dc212
@ -66,7 +66,6 @@ fun QuickMaxDurationSelector(
|
||||
Button(
|
||||
onClick = {
|
||||
scope.launch {
|
||||
// TODO: Add hide to microphone selection
|
||||
sheetState.hide()
|
||||
onDismiss()
|
||||
}
|
||||
@ -76,14 +75,14 @@ fun QuickMaxDurationSelector(
|
||||
}
|
||||
}
|
||||
},
|
||||
colors = ButtonDefaults.textButtonColors(),
|
||||
colors = ButtonDefaults.textButtonColors(
|
||||
contentColor = MaterialTheme.colorScheme.onSurface,
|
||||
),
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.height(64.dp),
|
||||
) {
|
||||
Text(
|
||||
formatDuration(duration)
|
||||
)
|
||||
Text(formatDuration(duration))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user