Might be a silly question, because I feel like I a...
# compose
c
Might be a silly question, because I feel like I already know the answer (i.e. just give AS more ram if you want, but after a certain point it doesn't matter), but is there any way to speed up the preview of a composable updating if you're on a powerful machine? Like is there some way to assign more cores to the preview service, or more ram? I have 128GB of ram and a beefy xeon cpu, but it still takes 4+ seconds to see my text update for this composable (granted it's in an existing project, but all I'm doing is changing asdf to abcd and it takes 4+ seconds.
Copy code
@Preview(showBackground = true)
@Composable
fun DefaultPreview() {
    Greeting("asdf")
}