You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I've read all of the other issues about this topic like #250
where you mentioned some solutions, btw is there a complete demo project with these solutions somewhere to be looked at? You also mentioned that you historically used for example BottomSheetDialogFragment with .show(fragmentManager) to simplify, but I am not sure how would you then bindServices to add dependencies for example for ViewModels that will be used for that BottomSheetDialogFragment or DialogFragment since they kind of live outside of the scoped services in that case, we could maybe connect that dialog to jetpack's ViewModel and inject global services from the application via factory but we then again have 2 different worlds of view models
The text was updated successfully, but these errors were encountered:
we could maybe connect that dialog to jetpack's ViewModel and inject global services from the application via factory but we then again have 2 different worlds of view models
In a real project, this is exactly what I did.
It was easier to reason about than making the DialogFragment dismiss update the backstack. Then again, I didn't actually try that approach.
Hello, I've read all of the other issues about this topic like #250
where you mentioned some solutions, btw is there a complete demo project with these solutions somewhere to be looked at? You also mentioned that you historically used for example
BottomSheetDialogFragment
with.show(fragmentManager)
to simplify, but I am not sure how would you thenbindServices
to add dependencies for example for ViewModels that will be used for thatBottomSheetDialogFragment
orDialogFragment
since they kind of live outside of the scoped services in that case, we could maybe connect that dialog to jetpack's ViewModel and inject global services from the application via factory but we then again have 2 different worlds of view modelsThe text was updated successfully, but these errors were encountered: