It emulates Android's BottomSheet in pure JavaScript. It's implemented as another Dialog, so it can be used instead of one. The implementation only supports text options with an associated icon, and an optional 'selected' marker.
5 lines
242 B
JavaScript
5 lines
242 B
JavaScript
export { default as DialogContainer } from './DialogContainer';
|
|
export { default as Dialog } from './Dialog';
|
|
export { default as SimpleBottomSheet } from './SimpleBottomSheet';
|
|
export { default as StatelessDialog } from './StatelessDialog';
|