From 1a1713f00f71a3333bf3fd1045850c25db353745 Mon Sep 17 00:00:00 2001 From: Jucelio Coelho Date: Mon, 23 Sep 2024 15:38:07 -0300 Subject: [PATCH] Description OK --- .../data/ProductDescription.kt | 7 ++++ .../components/ProductDescriptionSection.kt | 37 +++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 app/src/main/java/com/juceliodev/fooddeliverymyapplication/data/ProductDescription.kt create mode 100644 app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/screen/components/ProductDescriptionSection.kt diff --git a/app/src/main/java/com/juceliodev/fooddeliverymyapplication/data/ProductDescription.kt b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/data/ProductDescription.kt new file mode 100644 index 0000000..5bcb4f9 --- /dev/null +++ b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/data/ProductDescription.kt @@ -0,0 +1,7 @@ +package com.juceliodev.fooddeliverymyapplication.data + +val ProductDescriptionData = "Introducing Mr. Cheezy: a burger lover’s 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." \ No newline at end of file diff --git a/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/screen/components/ProductDescriptionSection.kt b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/screen/components/ProductDescriptionSection.kt new file mode 100644 index 0000000..3f4146b --- /dev/null +++ b/app/src/main/java/com/juceliodev/fooddeliverymyapplication/ui/screen/components/ProductDescriptionSection.kt @@ -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 + ) + } +} \ No newline at end of file