We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const fn= ({}: Props) => { let _drawer = React.useRef(); function close() { _drawer.current.close(); } function open() { _drawer.current.open(); } return ( <Drawer styles={drawerStyles} ref={(ref) => (_drawer.current = ref)} drawerType="overlay" openDrawerOffset={0.5} acceptTap={true} open={true} content={} > ); };
when i used like this , but it's not worked
The text was updated successfully, but these errors were encountered:
In functional component you need to use hook useRef
Sorry, something went wrong.
use this : ref={_drawer} instead of ref={(ref) => (_drawer.current = ref)}
ref={_drawer}
ref={(ref) => (_drawer.current = ref)}
Hope this will help you
import React, {useRef} from 'react'; ... const Index=()=>{ ... const drawerRef=useRef(null); function close() { drawerRef.current.close(); } function open() { drawerRef.current.open(); } ... return( <Drawer ref={drawerRef} ... > .... </Drawer>) }
No branches or pull requests
const fn= ({}: Props) => {
let _drawer = React.useRef();
function close() {
_drawer.current.close();
}
function open() {
_drawer.current.open();
}
return (
<Drawer
styles={drawerStyles}
ref={(ref) => (_drawer.current = ref)}
drawerType="overlay"
openDrawerOffset={0.5}
acceptTap={true}
open={true}
content={}
>
);
};
when i used like this , but it's not worked
The text was updated successfully, but these errors were encountered: