A Basic Application Window
A UI window can easily be created using the singleWindowApplication class.
At a minimum, you need to provide a title for the window.
By default, the window will be resizeable and will be of an arbitrary initial size.
The code for this is shown below:
fun main() = singleWindowApplication(
title = "Basic Window"
) {
App()
}
@Composable
fun App() {
// Window content
}
Some things to note...
- The
main()
function sets up the Window - The Window is then populated by the
App()
function - The
@Composable
annotation indicates that this function is a UI 'building block'