diff --git a/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/AppScaffold.kt b/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/AppScaffold.kt index a733d45d08..8d236c061b 100644 --- a/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/AppScaffold.kt +++ b/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/AppScaffold.kt @@ -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 = { diff --git a/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/NavigationDrawer.kt b/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/NavigationDrawer.kt index 5bf6858e94..2ca2019ba3 100644 --- a/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/NavigationDrawer.kt +++ b/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/components/NavigationDrawer.kt @@ -103,7 +103,7 @@ private fun DrawerContent( horizontalAlignment = Alignment.CenterHorizontally ) { Text( - text = "Local LLM", + text = "Kleidi LLaMA", style = MaterialTheme.typography.titleLarge, textAlign = TextAlign.Center ) diff --git a/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/screens/SettingsGeneralScreen.kt b/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/screens/SettingsGeneralScreen.kt index 16fea75eff..818d318ae6 100644 --- a/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/screens/SettingsGeneralScreen.kt +++ b/examples/llama.android/app/src/main/java/com/example/llama/revamp/ui/screens/SettingsGeneralScreen.kt @@ -102,7 +102,7 @@ fun SettingsGeneralScreen( modifier = Modifier.padding(16.dp) ) { Text( - text = "Local LLM", + text = "Kleidi LLaMA", style = MaterialTheme.typography.titleLarge )