Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4f3d47a authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix color application to back button on bouncer" into main

parents 277b9049 161a6bb4
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -273,11 +273,14 @@ fun BouncerContent(
                border =
                border =
                    BorderStroke(width = 1.dp, color = MaterialTheme.colorScheme.outlineVariant),
                    BorderStroke(width = 1.dp, color = MaterialTheme.colorScheme.outlineVariant),
                contentPadding = PaddingValues(horizontal = 24.dp, vertical = 16.dp),
                contentPadding = PaddingValues(horizontal = 24.dp, vertical = 16.dp),
                colors =
                    ButtonDefaults.outlinedButtonColors(
                        contentColor = MaterialTheme.colorScheme.primary
                    ),
            ) {
            ) {
                Text(
                Text(
                    text = stringResource(R.string.back_button_on_bouncer),
                    text = stringResource(R.string.back_button_on_bouncer),
                    style = MaterialTheme.typography.titleMedium,
                    style = MaterialTheme.typography.titleMedium,
                    color = MaterialTheme.colorScheme.primary,
                )
                )
            }
            }
        }
        }