Fix reference to transcriptText state in WhisperApp() composable. Update .gitignore.

This commit is contained in:
2026-07-15 13:08:37 -04:00
parent 0825833a55
commit b73198260d
2 changed files with 74 additions and 16 deletions
@@ -375,7 +375,7 @@ fun WhisperApp(
horizontalAlignment = Alignment.CenterHorizontally
) {
Text(
text = transcriptText,
text = "Transcription",
style = MaterialTheme.typography.headlineMedium,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(bottom = 16.dp)
@@ -388,7 +388,7 @@ fun WhisperApp(
.verticalScroll(rememberScrollState())
) {
Text(
text = "Transcription will appear here...",
text = transcriptText,
style = MaterialTheme.typography.bodyLarge
)
}