Initial commit

This commit is contained in:
2023-10-31 08:05:17 +08:00
commit 08b11ca10a
63 changed files with 1841 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
@file:Suppress("unused")
import androidx.compose.runtime.Composable
import androidx.compose.ui.window.ComposeUIViewController
fun createUIViewController() = ComposeUIViewController { MainView() }
@Composable
fun MainView() = App()