simple-stack icon indicating copy to clipboard operation
simple-stack copied to clipboard

DialogFragment and BottomDialogFragment as part of navigation stack, question

Open uberchilly opened this issue 2 years ago • 2 comments

Hello, I've read all of the other issues about this topic like https://github.com/Zhuinden/simple-stack/issues/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

uberchilly avatar Jun 21 '23 13:06 uberchilly

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.

Zhuinden avatar Jun 21 '23 17:06 Zhuinden

image

Even Jetpack Navigation has trouble making this work 🤔

Zhuinden avatar Sep 20 '23 21:09 Zhuinden