gbaldeck
05/31/2021, 9:30 PMitems
function in LazyListScope. The item content is not re-rendering despite state change. Or perhaps I'm doing something wrong? here is the code
https://github.com/recursivelftr/Grim-Locations/blob/master/src/main/kotlin/io/grimlocations/ui/view/component/LocationListComponent.kt#L52John O'Reilly
05/31/2021, 9:41 PMgbaldeck
06/01/2021, 12:47 AMitem
function instead of items
, same problem. This is a pretty major issue as there does not seem to be any work aroundZach Klippenstein (he/him) [MOD]
06/01/2021, 1:20 PMSet
for the input there. Ordering of elements within a set is not guaranteed. This means your key function could be unstable, and the order of rows in your list is undefined and could randomly switch between compositions.gbaldeck
06/01/2021, 1:22 PMZach Klippenstein (he/him) [MOD]
06/01/2021, 1:22 PMgbaldeck
06/01/2021, 1:24 PMZach Klippenstein (he/him) [MOD]
06/01/2021, 2:18 PM