https://kotlinlang.org logo
#compose
Title
# compose
g

Guy Bieber

10/21/2020, 11:47 PM
Example… This specific problem is a MutableList
Copy code
var pages : MutableList<PagerDataModel.Page> = mutableStateListOf()
// is the added item also mutableStageOf
// note there is no such thing as a MutableStateList.
pages.add(...)
3 Views