Skip to content

Commit

Permalink
update app logo
Browse files Browse the repository at this point in the history
rizky201008 committed Jul 13, 2023
1 parent 1c2fa86 commit bb60189
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:icon="@drawable/vixgpt"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package com.vixiloc.vixgpt.presentation.sreens

import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.size
import androidx.compose.material3.MaterialTheme
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.rememberCoroutineScope
@@ -22,12 +24,14 @@ import kotlinx.coroutines.launch
fun Splash(navController: NavHostController) {
val scope = rememberCoroutineScope()
Column(
modifier = Modifier.fillMaxSize(),
modifier = Modifier
.fillMaxSize()
.background(color = MaterialTheme.colorScheme.tertiary),
verticalArrangement = Arrangement.Center,
horizontalAlignment = Alignment.CenterHorizontally
) {
Image(
painter = painterResource(id = R.drawable.baseline_chat_24),
painter = painterResource(id = R.drawable.vixgpt_transparent),
contentDescription = null,
modifier = Modifier.size(100.dp)
)
Binary file added app/src/main/res/drawable/vixgpt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/vixgpt_transparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bb60189

Please sign in to comment.