Skip to content

Commit

Permalink
fix: wrong color divider on collection screen (#975)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chesire committed Apr 26, 2023
1 parent 837cc47 commit 60d7711
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,9 @@ private fun SeriesItem(
.fillMaxWidth()
.padding(0.dp, 0.dp, 0.dp, 16.dp)
)
Divider()
Divider(
color = MaterialTheme.colorScheme.onSurface
)
Row(
modifier = Modifier
.fillMaxWidth()
Expand Down Expand Up @@ -402,7 +404,7 @@ private fun RenderSnackbar(
private fun Preview() {
val initialState = UIState(
screenTitle = R.string.nav_anime,
isInitializing = true,
isInitializing = false,
models = listOf(
Series(
userId = 0,
Expand Down

0 comments on commit 60d7711

Please sign in to comment.