Hey guys, what is the benefits of using `flow` over normal `list/muablelist` in Kmm project? What is...
v
Hey guys, what is the benefits of using
flow
over normal
list/muablelist
in Kmm project? What is the benefits in ios platform?
m
that depends on your usecase doesn’t it? you can use
Flow
to observe some changes and
Flow
can be
Flow<List<*>>
. when you need to stream values use
Flow
othervise for storing things, one time returns etc. use
List
v
Can we use mutableList ?
Or mutableLivedata ?
m
mutableList
is for different purposes than
Flow
or
LiveData
v
Okk