You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
11 lines
294 B
Kotlin
11 lines
294 B
Kotlin
package com.topjohnwu.magisk.view
|
|
|
|
import com.topjohnwu.magisk.R
|
|
import com.topjohnwu.magisk.databinding.DiffRvItem
|
|
|
|
class TextItem(val text: Int) : DiffRvItem<TextItem>() {
|
|
override val layoutRes = R.layout.item_text
|
|
|
|
override fun contentSameAs(other: TextItem) = text == other.text
|
|
}
|