UNPKG

@nativescript-community/ui-persistent-bottomsheet

Version:

NativeScript plugin that allows you to easily add a persistent bottomsheet to your projects.

7 lines 349 B
import * as React from 'react'; import { registerElement } from 'react-nativescript'; export function registerDrawer() { registerElement('bottomsheet', () => require('../').BottomSheet); } export const BottomSheet = React.forwardRef((props, ref) => (React.createElement("bottomsheet", { ...props, ref: ref }))); //# sourceMappingURL=index.js.map