style: change style

This commit is contained in:
2026-06-05 10:52:35 +03:30
parent 4480b26e07
commit 885b960cc9
@@ -280,7 +280,6 @@ fun PharmacyResultItem(
} }
} }
if (showDetails) { if (showDetails) {
Divider(modifier = Modifier.padding(vertical = 4.dp))
when (detailState) { when (detailState) {
is PharmacyDetailState.Loading -> { is PharmacyDetailState.Loading -> {
@@ -296,6 +295,7 @@ fun PharmacyResultItem(
Column( Column(
verticalArrangement = Arrangement.spacedBy(8.dp) verticalArrangement = Arrangement.spacedBy(8.dp)
) { ) {
HorizontalDivider(modifier = Modifier.padding(vertical = MaterialTheme.dime.xs))
// آدرس // آدرس
Row( Row(
verticalAlignment = Alignment.Top, verticalAlignment = Alignment.Top,
@@ -333,14 +333,6 @@ fun PharmacyResultItem(
) )
} }
} }
// هشدار (اطلاعات از HTML)
Text(
text = "⚠️ دریافت دارو فقط با نسخه کامل و بصورت حضوری در محل داروخانه امکان پذیر است",
fontSize = MaterialTheme.typography.bodySmall.fontSize,
color = MaterialTheme.colorScheme.error,
modifier = Modifier.padding(top = 4.dp)
)
} }
} }
@@ -355,14 +347,6 @@ fun PharmacyResultItem(
else -> {} else -> {}
} }
} }
Text(
text = "${pharmacy.pharmacyUrl}",
fontSize = MaterialTheme.typography.bodySmall.fontSize,
color = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.6f)
)
} }
} }
} }