feat(ui): Rename app from MyIce to MyIceK

Update the app display name in all user-visible locations:
Android manifest label, desktop window title, login screen,
and schedule screen top bar.

Refs #2
This commit is contained in:
2026-08-06 13:49:35 +02:00
parent ea15c0423c
commit a2d5a57aec
4 changed files with 4 additions and 4 deletions
@@ -66,7 +66,7 @@ fun LoginScreen(
verticalArrangement = Arrangement.Center,
) {
Text(
text = "MyIce",
text = "MyIceK",
style = MaterialTheme.typography.headlineLarge,
fontWeight = FontWeight.Bold,
)
@@ -80,7 +80,7 @@ fun ScheduleScreen(
Scaffold(
topBar = {
TopAppBar(
title = { Text("MyIce") },
title = { Text("MyIceK") },
actions = {
val email = (authState as? ch.parano.myice.viewmodel.AuthState.Authenticated)?.email
if (email != null) {