package org.schabi.newpipe.local.subscription.item import android.view.View import com.xwray.groupie.viewbinding.BindableItem import org.schabi.newpipe.R import org.schabi.newpipe.databinding.FeedGroupAddNewItemBinding class FeedGroupAddNewItem : BindableItem() { override fun getLayout(): Int = R.layout.feed_group_add_new_item override fun initializeViewBinding(view: View) = FeedGroupAddNewItemBinding.bind(view) override fun bind(viewBinding: FeedGroupAddNewItemBinding, position: Int) { // this is a static item, nothing to do here } }