Robert C
04/02/2025, 9:27 AMdependenciesContainerBuilder = {
navGraph(SomeNavGraph){
dependency(SomeObject())
}
and then im trying to inject this by
ScreenA(
...
someObject: SomeObject
)
ScreenB(
...
someObject: SomeObject
)
where SomeNavGraph contains 2 destinations, im using Koin in the project
object is getting injected but these are 2 different objects in both of the screens
both screens belong to nested SomeNavGraph
is this possible for non viewmodel objects?Mudassar
04/04/2025, 10:31 AMRobert C
04/04/2025, 10:53 AMMudassar
04/07/2025, 8:56 AMRobert C
04/07/2025, 8:58 AMMudassar
04/07/2025, 11:43 AM