Skip to content

Commit

Permalink
Add scrollbar color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
Isira-Seneviratne committed Sep 16, 2024
1 parent db485c3 commit 4c4fe3f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import androidx.compose.ui.unit.dp
import my.nanihadesuka.compose.ColumnScrollbar
import org.schabi.newpipe.BuildConfig
import org.schabi.newpipe.R
import org.schabi.newpipe.ui.theme.NewPipeScrollbarSettings
import org.schabi.newpipe.util.external_communication.ShareUtils

private val ABOUT_ITEMS = listOf(
Expand Down Expand Up @@ -58,7 +59,7 @@ private class AboutData(
fun AboutTab() {
val scrollState = rememberScrollState()

ColumnScrollbar(state = scrollState) {
ColumnScrollbar(state = scrollState, settings = NewPipeScrollbarSettings) {
Column(
modifier = Modifier
.fillMaxWidth()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ import androidx.compose.ui.unit.dp
import com.mikepenz.aboutlibraries.ui.compose.m3.LibrariesContainer
import my.nanihadesuka.compose.LazyColumnScrollbar
import org.schabi.newpipe.R
import org.schabi.newpipe.ui.theme.NewPipeScrollbarSettings

@Composable
@NonRestartableComposable
fun LicenseTab() {
val lazyListState = rememberLazyListState()

LazyColumnScrollbar(state = lazyListState) {
LazyColumnScrollbar(state = lazyListState, settings = NewPipeScrollbarSettings) {
LibrariesContainer(
modifier = Modifier
.fillMaxWidth()
Expand Down
7 changes: 7 additions & 0 deletions app/src/main/java/org/schabi/newpipe/ui/theme/Theme.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.darkColorScheme
import androidx.compose.material3.lightColorScheme
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
import my.nanihadesuka.compose.ScrollbarSettings

private val LightColors = lightColorScheme(
primary = md_theme_light_primary,
Expand Down Expand Up @@ -70,6 +72,11 @@ private val DarkColors = darkColorScheme(
scrim = md_theme_dark_scrim,
)

val NewPipeScrollbarSettings = ScrollbarSettings(
thumbSelectedColor = md_theme_dark_primary,
thumbUnselectedColor = Color.Red
)

@Composable
fun AppTheme(useDarkTheme: Boolean = isSystemInDarkTheme(), content: @Composable () -> Unit) {
MaterialTheme(
Expand Down

0 comments on commit 4c4fe3f

Please sign in to comment.