import { Drawer as NativeScriptDrawer } from '@nativescript-community/ui-drawer'; import { Drawer } from '@nativescript-community/ui-drawer/react'; import * as React from 'react'; import { NSVElement, StyleSheet } from 'react-nativescript'; export function BasicDrawer() { const drawerRef = React.useRef>(null); function onOpenDrawer() { drawerRef.current.nativeView.open('left'); } function onCloseDrawer() { drawerRef.current.nativeView.close('left'); } return (