Replace Skip implementation with Kotlin Multiplatform implementation

This commit is contained in:
2026-09-02 22:11:32 +03:00
parent 902b683779
commit abf7cf2e83
184 changed files with 7163 additions and 2449 deletions
@@ -0,0 +1,15 @@
package xyz.tyiu.satsprice
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
Window(
onCloseRequest = ::exitApplication,
title = "SatsPrice",
icon = painterResource("icon.png"),
) {
App()
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB