Ayomide
12/30/2020, 4:08 PMAdam Powell
12/30/2020, 4:14 PMAdam Powell
12/30/2020, 4:14 PMAdam Powell
12/30/2020, 4:17 PMAdam Powell
12/30/2020, 4:18 PMmutableStateListOf
, which gives you a list that will automatically invalidate any composable that consumed it whenever it changesAyomide
12/30/2020, 4:46 PMKshitij Patil
12/30/2020, 10:39 PMcallbackFlow
for okhttp's Websocket where I used connectionStatus: MutableStateFlow<ConnectionStatus>
(a simple enum representing several states) and messages: MutableSharedFlow<String>
to maintain a flow of incoming messages. Both of these flows were being populated via a callbackFlow
Umar Ata
12/31/2020, 6:58 AM