E-Food Waste APP

This commit is contained in:
hans 2024-12-12 15:17:04 +07:00
parent 4a2db6e30b
commit d3f949c82b
13 changed files with 29 additions and 20 deletions

2
.idea/compiler.xml generated
View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="CompilerConfiguration"> <component name="CompilerConfiguration">
<bytecodeTargetLevel target="17" /> <bytecodeTargetLevel target="21" />
</component> </component>
</project> </project>

View File

@ -4,6 +4,14 @@
<selectionStates> <selectionStates>
<SelectionState runConfigName="app"> <SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" /> <option name="selectionMode" value="DROPDOWN" />
<DropdownSelection timestamp="2024-12-12T07:28:03.424456600Z">
<Target type="DEFAULT_BOOT">
<handle>
<DeviceId pluginId="LocalEmulator" identifier="path=C:\Users\ASUS\.android\avd\Pixel_9_Pro_XL_API_VanillaIceCream.avd" />
</handle>
</Target>
</DropdownSelection>
<DialogSelection />
</SelectionState> </SelectionState>
</selectionStates> </selectionStates>
</component> </component>

3
.idea/gradle.xml generated
View File

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings"> <component name="GradleSettings">
<option name="linkedExternalProjectsSettings"> <option name="linkedExternalProjectsSettings">
<GradleProjectSettings> <GradleProjectSettings>
<option name="testRunner" value="CHOOSE_PER_TEST" />
<option name="externalProjectPath" value="$PROJECT_DIR$" /> <option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" /> <option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
<option name="modules"> <option name="modules">
@ -14,5 +16,6 @@
<option name="resolveExternalAnnotations" value="false" /> <option name="resolveExternalAnnotations" value="false" />
</GradleProjectSettings> </GradleProjectSettings>
</option> </option>
<option name="parallelModelFetch" value="true" />
</component> </component>
</project> </project>

3
.idea/misc.xml generated
View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="jbr-21" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" /> <output url="file://$PROJECT_DIR$/build/classes" />
</component> </component>
<component name="ProjectType"> <component name="ProjectType">

View File

@ -2,6 +2,5 @@ package com.juceliodev.fooddeliverymyapplication.data
val ProductDescriptionData = "Introducing Mr. Cheezy: a burger lovers dream!\n" + val ProductDescriptionData = "Introducing Mr. Cheezy: a burger lovers dream!\n" +
"\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" + "Ayam Bakar Mas Kris adalah surga bagi pecinta ayam bakar! Daging ayamnya empuk, bumbunya meresap sempurna, dan aroma bakarannya menggoda sejak gigitan pertama. Dipadukan dengan sambal khas yang pedas nikmat, setiap suapan menghadirkan rasa otentik yang sulit dilupakan.!.\n" +
"\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

@ -11,18 +11,18 @@ data class ProductFlavorState(
val ProductFlavorsData = listOf( val ProductFlavorsData = listOf(
ProductFlavorState( ProductFlavorState(
imgRes = R.drawable.img_cheese, imgRes = R.drawable.img_teh,
name = "Chedder", name = "es teh",
price = "$0.79" price = "Rp. 2000"
), ),
ProductFlavorState( ProductFlavorState(
imgRes = R.drawable.img_bacon, imgRes = R.drawable.img_tofu,
name = "Bacon", name = "Tahu goreng",
price = "$0.52" price = "Rp. 3000"
), ),
ProductFlavorState( ProductFlavorState(
imgRes = R.drawable.img_onion, imgRes = R.drawable.img_tempegoreng,
name = "Onion", name = "Tempe Goreng",
price = "$0.28" price = "Rp. 3000"
) )
) )

View File

@ -13,11 +13,11 @@ enum class ProductHighlightType {
} }
data class ProductPreviewState( data class ProductPreviewState(
val headline: String = "Mr. Cheezy", val headline: String = "AYAM BAKAR MAS KRIS",
@DrawableRes val productImg: Int = R.drawable.img_burger, @DrawableRes val productImg: Int = R.drawable.img_bakar,
val highlights: List<ProductHighlightState> = listOf( val highlights: List<ProductHighlightState> = listOf(
ProductHighlightState( ProductHighlightState(
text = "Classic Taste", text = "manteep",
type = ProductHighlightType.SECONDARY type = ProductHighlightType.SECONDARY
), ),
ProductHighlightState( ProductHighlightState(

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -1,5 +1,5 @@
[versions] [versions]
agp = "8.5.2" agp = "8.7.2"
kotlin = "1.9.0" kotlin = "1.9.0"
androidx-core = "1.13.1" androidx-core = "1.13.1"
androidx-runtime = "2.8.5" androidx-runtime = "2.8.5"

View File

@ -1,6 +1,6 @@
#Mon Sep 23 13:49:19 GMT-03:00 2024 #Mon Sep 23 13:49:19 GMT-03:00 2024
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists