Permalink
Switch branches/tags
Nothing to show
Find file Copy path
14 lines (11 sloc) 402 Bytes
package com.bernaferrari.changedetection.groupie
import com.bernaferrari.changedetection.R
import com.xwray.groupie.kotlinandroidextensions.Item
import com.xwray.groupie.kotlinandroidextensions.ViewHolder
/**
* Simple item with a progress bar
*/
class LoadingItem : Item() {
override fun getLayout() = R.layout.item_loading
override fun bind(viewHolder: ViewHolder, position: Int) = Unit
}