slush
slush copied to clipboard
This library will no longer be updated 😭
If i might suggested another feature: A different header view that is displayed as the first item would be awesome could be something like this in the builder: `addHeader(R.layout.header) {...
found this great library for dividers (especially `recyclerViewDividerAsSpace`) https://github.com/fondesa/recycler-view-divider maybe it could be integrated :) *really love this library, let me know if you want me to make another PR*
added swipeActions, use like this: ``` .setSwipeActions(SlushSwipeActions() .setLeft(SlushSwipeActions.Properties(icon = R.drawable.ic_left, color = getColor(R.color.blue), text = "Left"), object : SlushSwipeActions.SwipeAction { override fun onSwipe(position: Int, item: ITEM) { TODO("Not yet implemented")...
added `onDiffCallback` to Slush with - areItemsTheSame - areContentsTheSame (defaults to false) just to determine if some unique identifier is the same allowing for smoother item animations _includes https://github.com/MinSeungHyun/slush/pull/20_
upgrade dependencies added onItemClickWithItem(View, ITEM)