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

Commit 2b6fd022 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

fix communal hub background and customize button

parent b952e1e7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ constructor(
                                        )
                                )
                        )
                        .background(colors.secondary, RoundedCornerShape(50.dp)),
                        .background(colors.primary, RoundedCornerShape(50.dp)),
                onClick = onClick,
            ) {
                Row(
@@ -160,14 +160,14 @@ constructor(
                    Icon(
                        imageVector = Icons.Outlined.Widgets,
                        contentDescription = null,
                        tint = colors.onSecondary,
                        tint = colors.surface,
                        modifier = Modifier.size(20.dp)
                    )
                    Spacer(modifier = Modifier.size(8.dp))
                    Text(
                        text = stringResource(R.string.button_to_configure_widgets_text),
                        style = MaterialTheme.typography.titleSmall,
                        color = colors.onSecondary
                        color = colors.surface
                    )
                }
            }
+1 −1
Original line number Diff line number Diff line
@@ -195,7 +195,7 @@ constructor(
            PlatformTheme {
                Box(
                    modifier =
                        Modifier.fillMaxSize().background(MaterialTheme.colorScheme.surfaceDim)
                        Modifier.fillMaxSize().background(MaterialTheme.colorScheme.surface)
                ) {
                    CommunalHub(
                        viewModel = communalViewModel,