Arjan van Wieringen
10/15/2022, 9:30 AMrememberWindowState
and I've seen the examples where a snapshotFlow
is created based on the parameters of WindowState
. However, when looking at the interface definition for WindowState
nowhere a State
interface member is defined, however when looking at the implementation WindowStateImpl
it implements the interface using the by mutableStateOf
convention. For me this is a bit weird. The interface doesn't imply that snapshotFlow
would work, however it depends purely on the implementation. Am I missing something here?Stylianos Gakis
10/15/2022, 11:37 AM