refactor: merge to demo new usage

This commit is contained in:
2024-01-12 12:32:02 +08:00
parent c213f5d507
commit b35786c57f
15 changed files with 524 additions and 159 deletions

View File

@@ -21,7 +21,6 @@
*/
package com.highcapable.flexiui.demo
import MainView
import androidx.compose.ui.unit.dp
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
@@ -32,5 +31,5 @@ fun main() = application {
onCloseRequest = ::exitApplication,
title = "Flexi UI Demo",
state = rememberWindowState(width = 550.dp, height = 1000.dp)
) { MainView() }
) { App() }
}