BottomSheetMenu icon indicating copy to clipboard operation
BottomSheetMenu copied to clipboard

Library for Material Modal Bottom Sheets Menu https://material.io/guidelines/components/bottom-sheets.html#bottom-sheets-modal-bottom-sheets

Results 4 BottomSheetMenu issues
Sort by recently updated
recently updated
newest added

Make it work like this in prod code ``` override fun onCreateBottomSheetMenu(inflater: MenuInflater, menu: Menu) { inflater.inflate(R.menu.menu_bottom_sheet, menu) val item = menu.findItem(R.id.action_delete) item.setTextColor(Color.RED) item.setIconTint(Color.RED) } ```

kotlin
pending

Add `setTitle` method for BottomSheet menu to support showing title according to material specs ![Image](https://storage.googleapis.com/material-design/publish/material_v_11/assets/0Bzhp5Z4wHba3Q3NrbGhWQXJxSGs/components_bottomsheets_specs3.png)

enhancement
pending

Support dividers for menu according to material design specs ![Image](https://storage.googleapis.com/material-design/publish/material_v_11/assets/0Bzhp5Z4wHba3Q3NrbGhWQXJxSGs/components_bottomsheets_specs3.png)

enhancement

Add grid-style bottom sheet as in material specs ![Image](https://storage.googleapis.com/material-design/publish/material_v_11/assets/0Bzhp5Z4wHba3ZnBOcy1YNThoS00/components_bottomsheets_specs7.png)

enhancement