@nativescript-community/ui-persistent-bottomsheet
Version:
NativeScript plugin that allows you to easily add a persistent bottomsheet to your projects.
11 lines • 429 B
JavaScript
import { NativeViewElementNode, registerElement } from 'svelte-native/dom';
import { PersistentBottomSheet } from '../';
export default class PersistentBottomSheetElement extends NativeViewElementNode {
constructor() {
super('bottomsheet', PersistentBottomSheet);
}
static register() {
registerElement('bottomsheet', () => new PersistentBottomSheetElement());
}
}
//# sourceMappingURL=index.js.map