https://kotlinlang.org logo
Title
a

Andromadus Naruto

02/14/2023, 11:06 PM
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

Casey Brooks

02/15/2023, 7:40 PM
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

Andromadus Naruto

02/15/2023, 8:10 PM
Noted. Thanks for taking the time and for the suggestions. I'll implement it soon. 👍🏾