Description

OK
This commit is contained in:
Jucelio Coelho 2024-09-23 15:38:07 -03:00
parent 9ec3d49cdf
commit 1a1713f00f
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package com.juceliodev.fooddeliverymyapplication.data
val ProductDescriptionData = "Introducing Mr. Cheezy: a burger lovers dream!\n" +
"\n" +
"Sink your teeth into a succulent beef patty, smothered in a rich, melting blend of cheddar, Swiss, and American cheeses. Crispy bacon adds a satisfying crunch, while caramelized onions bring a touch of sweetness.\n" +
"\n" +
"Drizzled with zesty BBQ sauce and tucked inside a perfectly toasted brioche bun, Mr. Cheezy is pure, cheesy bliss in every bite."

View File

@ -0,0 +1,37 @@
package com.juceliodev.fooddeliverymyapplication.ui.screen.components
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.dp
import com.juceliodev.fooddeliverymyapplication.ui.theme.AppTheme
@Composable
fun ProductDescriptionSection(
modifier: Modifier = Modifier,
productDescription: String
) {
Column(
modifier = modifier.fillMaxWidth(),
verticalArrangement = Arrangement.spacedBy(11.dp),
horizontalAlignment = Alignment.Start
) {
Text(
text = "Description",
style = AppTheme.typography.titleLarge,
color = AppTheme.colors.onBackground
)
Text(
text = productDescription,
style = AppTheme.typography.body,
color = AppTheme.colors.onBackground,
modifier = Modifier.fillMaxWidth(),
textAlign = TextAlign.Justify
)
}
}