Fix app bar logo: use Image (no tint) + transparent background

This commit is contained in:
Tretzi
2026-04-09 21:37:37 -05:00
parent 18ea882920
commit b02685fca4
2 changed files with 2 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.foundation.Image
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Add
import androidx.compose.material.icons.filled.Delete
@@ -211,7 +212,7 @@ fun App(vm: MainViewModel = viewModel()) {
TopAppBar(
title = {
Row(verticalAlignment = Alignment.CenterVertically) {
Icon(
Image(
painter = painterResource(R.drawable.ic_app_logo),
contentDescription = "MindMachine",
modifier = Modifier.size(20.dp)