Do you guys use any generic BottomSheetDialogFragm...
# android
j
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
We have a custom subclass of
Copy code
Dialog(context, R.style.MaterialDialogSheet)
which we use for all our bottom dialog sheets. (The style is inherited from
Copy code
android:style/Theme.Dialog
).
the layout just contains a recyclerview which we can attach an adapter to with the particular options we need