You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm using slide down with downshift react lib and it seems their properties dramatically slows down animation. I wonder if there is a way to catch animation start\finish events and make conditional properties set like {...(!isToggling && getMenuProps())}
Hi, I'm using slide down with downshift react lib and it seems their properties dramatically slows down animation. I wonder if there is a way to catch animation start\finish events and make conditional properties set like {...(!isToggling && getMenuProps())}
<SlideDown> { isOpen && <ul {...getMenuProps()}> { props.data.map((item, index) => ( <li key={index} {...(getItemProps({item, index }))}>{item.label} </li> )) } </ul> } </SlideDown>
The text was updated successfully, but these errors were encountered: