UI: update app name to be more Arm
This commit is contained in:
parent
55681847e9
commit
64ebdc67a6
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ private fun DrawerContent(
|
|||
horizontalAlignment = Alignment.CenterHorizontally
|
||||
) {
|
||||
Text(
|
||||
text = "Local LLM",
|
||||
text = "Kleidi LLaMA",
|
||||
style = MaterialTheme.typography.titleLarge,
|
||||
textAlign = TextAlign.Center
|
||||
)
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ fun SettingsGeneralScreen(
|
|||
modifier = Modifier.padding(16.dp)
|
||||
) {
|
||||
Text(
|
||||
text = "Local LLM",
|
||||
text = "Kleidi LLaMA",
|
||||
style = MaterialTheme.typography.titleLarge
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue