Fix reference to transcriptText state in WhisperApp() composable. Update .gitignore.
This commit is contained in:
+72
-14
@@ -1,15 +1,73 @@
|
|||||||
*.iml
|
# =========================================================================
|
||||||
.gradle
|
# Android Build Artifacts & Gradle
|
||||||
/local.properties
|
# =========================================================================
|
||||||
/.idea/caches
|
.gradle/
|
||||||
/.idea/libraries
|
build/
|
||||||
/.idea/modules.xml
|
**/build/
|
||||||
/.idea/workspace.xml
|
*.apk
|
||||||
/.idea/navEditor.xml
|
*.aar
|
||||||
/.idea/assetWizardSettings.xml
|
*.aab
|
||||||
.DS_Store
|
*.ap_
|
||||||
/build
|
output-metadata.json
|
||||||
/captures
|
|
||||||
.externalNativeBuild
|
# Gradle local configuration
|
||||||
.cxx
|
.gradle/
|
||||||
|
|
||||||
|
# Android Studio local history
|
||||||
|
.idea/localHistory/
|
||||||
|
|
||||||
|
# Crash logs
|
||||||
|
hs_err_pid*
|
||||||
|
replay_pid*
|
||||||
|
|
||||||
|
# =========================================================================
|
||||||
|
# Security & Secret Keys (Future-Proofing API Keys)
|
||||||
|
# =========================================================================
|
||||||
|
# This file stores your local SDK path and sensitive API keys
|
||||||
local.properties
|
local.properties
|
||||||
|
|
||||||
|
# Keystores and signing keys (Never commit production certificates!)
|
||||||
|
*.jks
|
||||||
|
*.keystore
|
||||||
|
*.pk8
|
||||||
|
*.pem
|
||||||
|
google-services.json
|
||||||
|
|
||||||
|
# =========================================================================
|
||||||
|
# JetBrains / Android Studio / Kotlin / Java
|
||||||
|
# =========================================================================
|
||||||
|
# Ignore individual IDE noise, but allow core code styling and sharing
|
||||||
|
*.iml
|
||||||
|
*.iws
|
||||||
|
.idea/workspace.xml
|
||||||
|
.idea/tasks.xml
|
||||||
|
.idea/vcs.xml
|
||||||
|
.idea/dictionaries
|
||||||
|
.idea/libraries
|
||||||
|
.idea/caches
|
||||||
|
.idea/navEditor.xml
|
||||||
|
.idea/deploymentTargetDropDown.xml
|
||||||
|
.idea/deploymentTargetSelector.xml
|
||||||
|
.idea/androidTestResultsUserPreferences.xml
|
||||||
|
|
||||||
|
# Kotlin specific temporary compiler directories
|
||||||
|
.kotlin/
|
||||||
|
|
||||||
|
# Java specific binary class outputs (if you add Java later)
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# =========================================================================
|
||||||
|
# C++ / NDK Build Artifacts (Future-Proofing Native Code)
|
||||||
|
# =========================================================================
|
||||||
|
.cxx/
|
||||||
|
externalNativeBuild/
|
||||||
|
obj/
|
||||||
|
|
||||||
|
# =========================================================================
|
||||||
|
# Miscellaneous & System Junk
|
||||||
|
# =========================================================================
|
||||||
|
*.log
|
||||||
|
captures/
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
|||||||
@@ -375,7 +375,7 @@ fun WhisperApp(
|
|||||||
horizontalAlignment = Alignment.CenterHorizontally
|
horizontalAlignment = Alignment.CenterHorizontally
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = transcriptText,
|
text = "Transcription",
|
||||||
style = MaterialTheme.typography.headlineMedium,
|
style = MaterialTheme.typography.headlineMedium,
|
||||||
fontWeight = FontWeight.Bold,
|
fontWeight = FontWeight.Bold,
|
||||||
modifier = Modifier.padding(bottom = 16.dp)
|
modifier = Modifier.padding(bottom = 16.dp)
|
||||||
@@ -388,7 +388,7 @@ fun WhisperApp(
|
|||||||
.verticalScroll(rememberScrollState())
|
.verticalScroll(rememberScrollState())
|
||||||
) {
|
) {
|
||||||
Text(
|
Text(
|
||||||
text = "Transcription will appear here...",
|
text = transcriptText,
|
||||||
style = MaterialTheme.typography.bodyLarge
|
style = MaterialTheme.typography.bodyLarge
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user