Remove unused dependencies (#7585)

(cherry picked from commit fc328e141c)
This commit is contained in:
Andreas
2022-07-23 14:54:08 +02:00
committed by Jobobby04
parent 2f7fda2523
commit dd0e12999d
4 changed files with 1 additions and 25 deletions
@@ -1,19 +0,0 @@
package eu.kanade.tachiyomi.widget
import android.content.Context
import android.util.AttributeSet
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
import eu.kanade.tachiyomi.R
import eu.kanade.tachiyomi.util.system.getThemeColor
class ThemedSwipeRefreshLayout @JvmOverloads constructor(
context: Context,
attrs: AttributeSet? = null,
) : SwipeRefreshLayout(context, attrs) {
init {
// Background
setProgressBackgroundColorSchemeColor(context.getThemeColor(R.attr.colorPrimary))
// This updates the progress arrow color
setColorSchemeColors(context.getThemeColor(R.attr.colorOnPrimary))
}
}