Yofou
03/04/2021, 12:39 PMundecorated
actually makes my window non-resizable, so I was wondering if there's a solution to make my window
undecorated but also resizable, thank you in advanced. 🙂theapache64
03/04/2021, 12:42 PMYofou
03/04/2021, 12:44 PMfun main() = Window(
title = "Cache Monkey",
size = IntSize(1100, 635),
undecorated = true,
resizable = true,
) {
MaterialTheme {
Surface(
color = Color(32, 32, 32),
modifier = Modifier.fillMaxSize()
) {
rememberRootComponent(factory = ::NavComponent).render()
}
}
}
theapache64
03/04/2021, 12:57 PMolonho
03/04/2021, 3:58 PMlhwdev
03/06/2021, 6:20 AM