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
i don't can't can implement skeletonScreen.hide()
The text was updated successfully, but these errors were encountered:
how to hide the skeletonScreen
Sorry, something went wrong.
Skeleton.bind()... returns 'Skeleton' Object. You should to hide the skeleton Screen with this object
Skeleton.bind()...
val skeleton = Skeleton.bind(recyclerView).adapter(viewAdapter).show() skeleton.hide() // on Date Binding Completed
val skeleton = Skeleton.bind(recyclerView).adapter(viewAdapter).show()
skeleton.hide() // on Date Binding Completed
Funny thing, actually you should use return object of show() method: RecyclerViewSkeletonScreen As example:
show()
RecyclerViewSkeletonScreen
//fun onViewCreated val skeleton = loadAnimation.show() compositeDisposable.add( viewModel.reportsSubject.subscribe { reports -> reportsAdapter.update(reports) skeleton.hide() }
IMHO this is a bad decission in library design.
No branches or pull requests
i don't can't can implement skeletonScreen.hide()
The text was updated successfully, but these errors were encountered: