Why is the order important for the modifier (fillMaxSize() vs padding()) in Android Jetpack Compose?

Hello, Why is the order important for the modifier (fillMaxSize() vs padding()) in Android Jetpack Compose? I get for the modifiers: Modifier.fillMaxSize().padding(16.dp) Modifier.padding(16.dp).fillMaxSize() Not the same result. The latter creates a smaller composable -> but since one acts on the outside (fillMaxSize) and the other on the inside (padding), it shouldn't matter in my opinion…

MySQL library for Kotlin Multiplatform or JS?

I'm programming a website in Kotlin JS using the Kobweb library. I've searched for hours but haven't found a library that allows me to connect to a MySQL or MariaDB database from my website. SQLDelight is only available for Kotlin JS and Multiplatform with support for local SQLight databases, and all the other SQL libraries…

Asynchronous loading in Jetpack Compose doesn't work?

Hello, I have the following code in my Android Jetpack Compose app. When I start the app, the screen where the LazyColumn elements should be remains blank. However, the console displays the movie names (see println in the getTrendingMoviesAsync() method). Code in the MainScreen class: val movies by remember { mutableStateOf(ArrayList<JSONObject>(emptyList())) } val coroutineScope =…