the idea is when `path` is updated the `files` lis...
# compose-desktop
n
the idea is when
path
is updated the
files
list will reflect the change
p
From Compose docs:
Copy code
@Composable
fun FancyText(text: String) {
    // by passing text as a parameter to remember, it will re-run the calculation on
    // recomposition if text has changed since the last recomposition
    val formattedText = remember(text) { computeTextFormatting(text) }
    /*...*/
}