why
09/02/2021, 12:39 PMOutlinedTextField
, the memory profiler, after setting focus on/selecting the text field without typing anything, shows that Java allocations are happening non-stop, it keeps goin up until it gets GCed, then start going up again over n over, am I missing something?
MyApplicationTheme {
// A surface container using the 'background' color from the theme
Surface(color = MaterialTheme.colors.background) {
OutlinedTextField(value = "Ok", onValueChange = {})
}
}
Jesse Hill
09/02/2021, 7:08 PMTextField
. I hadn’t thought to check the profiler to see if it was happening outside the tests.why
09/02/2021, 8:09 PM