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
in my project I want change the scrollY when user click some button,I tryed change initialScrollY use the useState hooks,but it does not work :(
The text was updated successfully, but these errors were encountered:
const [initialScrollY, setInitialScrollY] = useState(0); useEffect(() => { if (searchParams?.get('filter')) { setInitialScrollY(300); } else { setInitialScrollY(0); } }, [searchParams]); <InfiniteScroll initialScrollY={initialScrollY} dataLength={searchList.length} next={getSearchListMore} hasMore={hasMore} loader={<SearchListSkeleton />} hasChildren scrollableTarget="scrollableDiv" className="flex-1 flex-grow overflow-y-scroll no-scrollbar" height="calc(100vh - 96px)" >....</InfiniteScroll>
my code like this
Sorry, something went wrong.
I haven't tried this prop, but we can use ref on the container and do something like ref.current.scrollTop = 0
ref.current.scrollTop = 0
No branches or pull requests
in my project I want change the scrollY when user click some button,I tryed change initialScrollY use the useState hooks,but it does not work :(
The text was updated successfully, but these errors were encountered: