Merge pull request #2962 from Bnyro/master

Use an elevated surface color for the swipe to refresh
This commit is contained in:
Bnyro 2023-02-04 11:22:01 +01:00 committed by GitHub
commit b8a1e8d56a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ import android.view.ViewConfiguration
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout
import com.github.libretube.R
import com.github.libretube.helpers.ThemeHelper
import com.google.android.material.elevation.SurfaceColors
import kotlin.math.abs
class CustomSwipeToRefresh(context: Context?, attrs: AttributeSet?) :
@ -19,7 +20,7 @@ class CustomSwipeToRefresh(context: Context?, attrs: AttributeSet?) :
init {
setColorSchemeColors(ThemeHelper.getThemeColor(this.context, R.attr.colorPrimary))
setProgressBackgroundColorSchemeColor(
ThemeHelper.getThemeColor(this.context, R.attr.colorSurface)
SurfaceColors.getColorForElevation(this.context, 20f)
)
}