OctoberCat
Results
1
comments of
OctoberCat
Funny thing, actually you should use return object of `show()` method: `RecyclerViewSkeletonScreen ` As example: ``` //fun onViewCreated val skeleton = loadAnimation.show() compositeDisposable.add( viewModel.reportsSubject.subscribe { reports -> reportsAdapter.update(reports) skeleton.hide() }...