Hi. I used Ballast (Core & Navigation) in this...
# ballast
a
Hi. I used Ballast (Core & Navigation) in this project and I would like your feedback regarding its usage including any criticisms and suggestions. Thanks.
c
This is looking great, thanks for sharing it! One issue I noticed with the Ballast usage: you’ll want to make sure to use a fresh
BallastViewModelConfiguration.Builder()
instance for each ViewModel, since it’s a mutable object, to prevent one VM from polluting the configuration of another. You basically just need to change this line to
factory { }
instead of
single { }
a
Noted. Thanks for taking the time and for the suggestions. I'll implement it soon. 👍🏾