Do you guys use any generic BottomSheetDialogFragment? Or you guys create different ones extending that one? I mean do you guys use any customBottomSheetDialogFragment which is reusable depending of the parameters?
s
stantronic
02/12/2020, 4:15 PM
We have a custom subclass of
Dialog(context, R.style.MaterialDialogSheet)
which we use for all our bottom dialog sheets. (The style is inherited from
android:style/Theme.Dialog
).
the layout just contains a recyclerview which we can attach an adapter to with the particular options we need