trying to save a set of serializable items across config changes, but have a weird error. It saves f...
m
trying to save a set of serializable items across config changes, but have a weird error. It saves fine for a single item in the set, but fails for more than one ๐Ÿงต
Copy code
var items by rememberSaveable { mutableStateOf(emptySet<T>()) }
it seems to unpack the set to individual items when the check is performed
crashes for set but works for list, somehow ๐Ÿคท
z
Please file a bug
๐Ÿ‘ 1
m