Fix reference to transcriptText state in WhisperApp() composable. Update .gitignore.
This commit is contained in:
@@ -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
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user