mirror of
https://github.com/BetterAndroid/compose-multiplatform-template.git
synced 2025-12-16 07:51:12 +08:00
14 lines
402 B
Kotlin
14 lines
402 B
Kotlin
package __GROUP_NAME__
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
import androidx.compose.ui.window.Window
|
|
import androidx.compose.ui.window.application
|
|
import androidx.compose.ui.window.rememberWindowState
|
|
|
|
fun main() = application {
|
|
Window(
|
|
onCloseRequest = ::exitApplication,
|
|
title = "__APP_NAME__",
|
|
state = rememberWindowState(width = 550.dp, height = 450.dp)
|
|
) { App() }
|
|
} |