UI: update app name to be more Arm

This commit is contained in:
Han Yin 2025-04-12 14:24:58 -07:00
parent 55681847e9
commit 64ebdc67a6
3 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ fun AppScaffold(
val useFahrenheit by performanceViewModel.useFahrenheitUnit.collectAsState()
// Formatted memory usage
val memoryText = "${memoryUsage.availableGb}GB available"
val memoryText = String.format("%.1f / %.1f GB", memoryUsage.availableGb, memoryUsage.totalGb)
Scaffold(
topBar = {

View File

@ -103,7 +103,7 @@ private fun DrawerContent(
horizontalAlignment = Alignment.CenterHorizontally
) {
Text(
text = "Local LLM",
text = "Kleidi LLaMA",
style = MaterialTheme.typography.titleLarge,
textAlign = TextAlign.Center
)

View File

@ -102,7 +102,7 @@ fun SettingsGeneralScreen(
modifier = Modifier.padding(16.dp)
) {
Text(
text = "Local LLM",
text = "Kleidi LLaMA",
style = MaterialTheme.typography.titleLarge
)