-
-
Save skydoves/de50db7f5ccad64d83bbca6b894ef9c3 to your computer and use it in GitHub Desktop.
bottom_sheet_fragment_example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyBottomSheetDialogFragment: BottomSheetDialogFragment() { | |
override fun onCreateView( | |
inflater: LayoutInflater, | |
container: ViewGroup?, | |
savedInstanceState: Bundle? | |
): View? { | |
return inflater.inflate(R.layout.my_bottom_sheet_fragment, container, false) | |
} | |
companion object { | |
const val TAG = "MyBottomSheetDialogFragment" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment