From 5868d064216be3ff5cbe4e218174ce599da7a51f Mon Sep 17 00:00:00 2001 From: null Date: Fri, 26 Jun 2026 09:59:53 -0500 Subject: [PATCH] brand(art): wire Delete account calm-goodbye illustration (A12) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DeleteAccountScreen gains illustration_account_deletion_goodbye centered above the copy — a soft box releasing hearts (no alarm imagery), making the goodbye respectful and on-brand. Verified live on dark; 0 FATAL. Co-Authored-By: Claude Opus 4.8 --- .../java/app/closer/ui/settings/DeleteAccountScreen.kt | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/src/main/java/app/closer/ui/settings/DeleteAccountScreen.kt b/app/src/main/java/app/closer/ui/settings/DeleteAccountScreen.kt index b1b32094..ed0eb171 100644 --- a/app/src/main/java/app/closer/ui/settings/DeleteAccountScreen.kt +++ b/app/src/main/java/app/closer/ui/settings/DeleteAccountScreen.kt @@ -3,7 +3,9 @@ package app.closer.ui.settings import androidx.compose.foundation.background import androidx.lifecycle.ViewModel import androidx.lifecycle.viewModelScope +import app.closer.R import app.closer.core.navigation.AppRoute +import app.closer.ui.components.BrandIllustration import app.closer.domain.repository.AuthRepository import dagger.hilt.android.lifecycle.HiltViewModel import javax.inject.Inject @@ -16,6 +18,7 @@ import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.Spacer +import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height @@ -295,6 +298,13 @@ fun DeleteAccountScreen( .padding(horizontal = 16.dp, vertical = 8.dp), verticalArrangement = Arrangement.spacedBy(12.dp) ) { + Box(modifier = Modifier.fillMaxWidth(), contentAlignment = Alignment.Center) { + BrandIllustration( + res = R.drawable.illustration_account_deletion_goodbye, + contentDescription = null, + modifier = Modifier.size(150.dp).padding(vertical = 4.dp) + ) + } Text( text = "Deleting your account is permanent and cannot be reversed. Your profile, sign-in, and pairing will be removed immediately.", style = MaterialTheme.typography.bodyMedium,