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

Commit 2d056498 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

AM: Update logo and app icon

parent 9b84b6e1
Loading
Loading
Loading
Loading
−3.31 KiB (19.4 KiB)
Loading image diff...
+3 −2
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.rememberVectorPainter
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.platform.LocalInspectionMode
import androidx.compose.ui.res.colorResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.tooling.preview.Preview
@@ -257,12 +258,12 @@ fun BrandingHeader() {
        Spacer(Modifier.height(16.dp))
        Box(
            Modifier.background(
                color = M3ColorScheme.primaryLight,
                color = colorResource(R.color.ic_launcher_background),
                shape = RoundedCornerShape(16.dp)
            )
        ) {
            Icon(
                painterResource(R.drawable.ic_launcher_foreground),
                painterResource(R.mipmap.ic_launcher_foreground),
                stringResource(R.string.app_name),
                tint = Color.White,
                modifier = Modifier
+2 −2
Original line number Diff line number Diff line
@@ -692,7 +692,7 @@ fun PushDistributorSelectionDialog_Preview_PushDisabled() {
            PushDistributorInfo(
                "com.example.distributor1",
                "Distributor 1",
                AppCompatResources.getDrawable(ctx, R.drawable.ic_launcher_foreground)
                AppCompatResources.getDrawable(ctx, R.mipmap.ic_launcher_foreground)
            )
        )
    ) { }
@@ -709,7 +709,7 @@ fun PushDistributorSelectionDialog_Preview_DistributorSelected() {
            PushDistributorInfo(
                "com.example.distributor1",
                "Distributor 1",
                AppCompatResources.getDrawable(ctx, R.drawable.ic_launcher_foreground)
                AppCompatResources.getDrawable(ctx, R.mipmap.ic_launcher_foreground)
            ),
            PushDistributorInfo("com.example.distributor2")
        )
+5 −4
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.platform.LocalConfiguration
import androidx.compose.ui.res.colorResource
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.res.stringResource
import androidx.compose.ui.text.style.TextAlign
@@ -53,11 +54,11 @@ class WelcomePage: IntroPage() {
        Column(
            modifier = Modifier
                .fillMaxSize()
                .background(color = M3ColorScheme.primaryLight)     // fill background color edge-to-edge
                .background(color = colorResource(R.color.ic_launcher_background))     // fill background color edge-to-edge
                .safeContentPadding()
        ) {
            Image(
                painter = painterResource(R.drawable.ic_launcher_foreground),
                painter = painterResource(R.mipmap.ic_launcher_foreground),
                contentDescription = null,
                modifier = Modifier
                    .fillMaxWidth()
@@ -126,12 +127,12 @@ class WelcomePage: IntroPage() {
            Row(
                modifier = Modifier
                    .fillMaxSize()
                    .background(color = MaterialTheme.colorScheme.primary)
                    .background(color = colorResource(R.color.ic_launcher_background))
                    .safeContentPadding(),
                verticalAlignment = Alignment.CenterVertically
            ) {
                Image(
                    painter = painterResource(R.drawable.ic_launcher_foreground),
                    painter = painterResource(R.mipmap.ic_launcher_foreground),
                    contentDescription = null,
                    modifier = Modifier
                        .fillMaxHeight()
+18.8 KiB
Loading image diff...
Loading