feat: add screen transitions and rebrand to MyIce

- AnimatedContent with fade transitions between screens (300ms)
- Desktop window title 'MyIce' (dropped 'K' codename)
This commit is contained in:
2026-08-06 17:19:21 +02:00
parent c9841b6744
commit 85e2391833
2 changed files with 32 additions and 19 deletions
@@ -22,7 +22,7 @@ import androidx.compose.ui.window.application
import ch.parano.myicek.auth.DesktopOAuthClient
fun main() = application {
Window(onCloseRequest = ::exitApplication, title = "MyIceK") {
Window(onCloseRequest = ::exitApplication, title = "MyIce") {
App(oauthClient = DesktopOAuthClient())
}
}