commit 3cba6bd6264dd856df8b75d69888be68f8ec4180 Author: Muhamad Rajwa Athoriq Date: Mon Jan 6 14:54:05 2025 +0700 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..14b2a9c --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +KantinKu \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b589d56 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..b268ef3 --- /dev/null +++ b/.idea/deploymentTargetSelector.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..0897082 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..6806f5a --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,53 @@ + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..fdf8d99 --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/migrations.xml b/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..8978d23 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..5f4aaf8 --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,79 @@ +plugins { + id("com.android.application") + id("org.jetbrains.kotlin.android") +} + +android { + namespace = "com.example.kantinku" + compileSdk = 34 + + defaultConfig { + applicationId = "com.example.kantinku" + minSdk = 21 + targetSdk = 34 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary = true + } + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + kotlinOptions { + jvmTarget = "17" + } + + buildFeatures { + compose = true + } + + composeOptions { + kotlinCompilerExtensionVersion = "1.5.1" + } + + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } +} + +dependencies { + // Core Android dependencies + implementation("androidx.core:core-ktx:1.10.1") + implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1") + implementation("androidx.activity:activity-compose:1.7.2") + implementation("androidx.compose.material:material-icons-core:1.5.4") + implementation("androidx.compose.material:material-icons-extended:1.5.4") + + // Jetpack Compose dependencies + implementation("androidx.compose.ui:ui:1.5.0") + implementation("androidx.compose.material3:material3:1.1.1") + implementation("androidx.compose.ui:ui-tooling-preview:1.5.0") + + // Debugging tools + debugImplementation("androidx.compose.ui:ui-tooling:1.5.0") + debugImplementation("androidx.compose.ui:ui-test-manifest:1.5.0") + + // Testing dependencies + testImplementation("junit:junit:4.13.2") + androidTestImplementation("androidx.test.ext:junit:1.1.5") + androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") + androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.5.0") +} diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/example/kantinku/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/example/kantinku/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..a738830 --- /dev/null +++ b/app/src/androidTest/java/com/example/kantinku/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.kantinku + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.example.kantinku", appContext.packageName) + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..1e666b0 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/example/kantinku/MainActivity.kt b/app/src/main/java/com/example/kantinku/MainActivity.kt new file mode 100644 index 0000000..a9d90bd --- /dev/null +++ b/app/src/main/java/com/example/kantinku/MainActivity.kt @@ -0,0 +1,522 @@ +package com.example.kantinku + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.Image +import androidx.compose.foundation.clickable +import androidx.compose.foundation.layout.* +import androidx.compose.foundation.lazy.LazyColumn +import androidx.compose.foundation.lazy.grid.GridCells +import androidx.compose.foundation.lazy.grid.LazyVerticalGrid +import androidx.compose.foundation.lazy.grid.items +import androidx.compose.foundation.lazy.items +import androidx.compose.foundation.shape.RoundedCornerShape +import androidx.compose.material.icons.Icons +import androidx.compose.material.icons.filled.ArrowBack +import androidx.compose.material.icons.filled.Add +import androidx.compose.material.icons.filled.Remove +import androidx.compose.material.icons.filled.ShoppingCart +import androidx.compose.material.icons.filled.Delete +import androidx.compose.material3.* +import androidx.compose.runtime.* +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.layout.ContentScale +import androidx.compose.ui.res.painterResource +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.text.style.TextAlign +import androidx.compose.ui.unit.dp +import androidx.compose.ui.unit.sp + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContent { + Surface( + modifier = Modifier.fillMaxSize(), + color = Color(0xFFFFD700) + ) { + FoodOrderingApp() + } + } + } +} + +data class Warung( + val id: String, + val name: String, + val description: String, + val imageResId: Int +) + +data class FoodItem( + val id: String, + val warungId: String, + val name: String, + val description: String, + val price: Double, + val imageResId: Int +) + +data class CartItem( + val foodItem: FoodItem, + var quantity: Int = 1 +) + +sealed class Screen { + object WarungList : Screen() + data class MenuList(val warung: Warung) : Screen() + object Cart : Screen() +} + +@OptIn(ExperimentalMaterial3Api::class) +@Composable +fun FoodOrderingApp() { + var currentScreen by remember { mutableStateOf(Screen.WarungList) } + var selectedWarung by remember { mutableStateOf(null) } + var cart by remember { mutableStateOf(mutableListOf()) } + + Scaffold( + topBar = { + TopAppBar( + title = { + Text( + when (currentScreen) { + is Screen.WarungList -> "KantinKu" + is Screen.MenuList -> "Menu ${selectedWarung?.name}" + Screen.Cart -> "Keranjang" + } + ) + }, + navigationIcon = { + if (currentScreen !is Screen.WarungList) { + IconButton(onClick = { + currentScreen = when (currentScreen) { + is Screen.MenuList -> Screen.WarungList + is Screen.Cart -> { + if (selectedWarung != null) Screen.MenuList(selectedWarung!!) + else Screen.WarungList + } + else -> Screen.WarungList + } + }) { + Icon(Icons.Default.ArrowBack, "Kembali") + } + } + }, + actions = { + if (currentScreen !is Screen.Cart) { + IconButton(onClick = { currentScreen = Screen.Cart }) { + BadgedBox( + badge = { + if (cart.isNotEmpty()) { + Badge { Text(cart.size.toString()) } + } + } + ) { + Icon(Icons.Default.ShoppingCart, "Keranjang") + } + } + } + } + ) + } + ) { paddingValues -> + Box(modifier = Modifier.padding(paddingValues)) { + when (val screen = currentScreen) { + is Screen.WarungList -> WarungList( + onWarungSelected = { warung -> + selectedWarung = warung + currentScreen = Screen.MenuList(warung) + } + ) + is Screen.MenuList -> FoodList( + warung = screen.warung, + cart = cart, + onAddToCart = { foodItem, quantity -> + val existingItem = cart.find { it.foodItem.id == foodItem.id } + if (existingItem != null) { + existingItem.quantity += quantity + cart = ArrayList(cart) + } else { + cart.add(CartItem(foodItem, quantity)) + cart = ArrayList(cart) + } + } + ) + Screen.Cart -> CartScreen( + cart = cart, + onRemoveItem = { cartItem -> + cart.remove(cartItem) + cart = ArrayList(cart) + }, + onUpdateQuantity = { cartItem, newQuantity -> + if (newQuantity > 0) { + cartItem.quantity = newQuantity + cart = ArrayList(cart) + } else { + cart.remove(cartItem) + cart = ArrayList(cart) + } + }, + onCheckout = { + cart.clear() + cart = ArrayList(cart) + currentScreen = Screen.WarungList + } + ) + } + } + } +} + +@Composable +fun WarungList(onWarungSelected: (Warung) -> Unit) { + val warungs = listOf( + Warung("w1", "Warung Pak Budi", "Masakan Tradisional", R.drawable.warung1), + Warung("w2", "Warung Makan Siti", "Spesialis Masakan Jawa", R.drawable.warung2), + Warung("w3", "Warung Seafood Mas John", "Ikan Segar Setiap Hari", R.drawable.warung3) + ) + + LazyVerticalGrid( + columns = GridCells.Fixed(2), + contentPadding = PaddingValues(8.dp) + ) { + items(warungs) { warung -> + Card( + modifier = Modifier + .padding(8.dp) + .clickable { onWarungSelected(warung) }, + shape = RoundedCornerShape(8.dp) + ) { + Column( + horizontalAlignment = Alignment.CenterHorizontally, + modifier = Modifier.padding(16.dp) + ) { + Image( + painter = painterResource(id = warung.imageResId), + contentDescription = warung.name, + modifier = Modifier + .size(120.dp) + .aspectRatio(1f), + contentScale = ContentScale.Crop + ) + Spacer(modifier = Modifier.height(8.dp)) + Text( + text = warung.name, + fontWeight = FontWeight.Bold, + fontSize = 16.sp + ) + Text( + text = warung.description, + color = Color.Gray, + fontSize = 12.sp + ) + } + } + } + } +} + +@Composable +fun FoodList( + warung: Warung, + cart: List, + onAddToCart: (FoodItem, Int) -> Unit +) { + var searchQuery by remember { mutableStateOf("") } + var showDialog by remember { mutableStateOf(false) } + var selectedFood by remember { mutableStateOf(null) } + + val foodItems = when (warung.id) { + "w1" -> listOf( + FoodItem("f1", "w1", "Nasi Goreng", "Klasik dan Lezat", 15000.0, R.drawable.food1), + FoodItem("f2", "w1", "Sate Ayam", "Sate Tradisional", 25000.0, R.drawable.food2), + FoodItem("f3", "w1", "Gado-gado", "Sayur Segar", 20000.0, R.drawable.food3) + ) + "w2" -> listOf( + FoodItem("f4", "w2", "Soto Ayam", "Kuah Khas Jawa", 18000.0, R.drawable.food4), + FoodItem("f5", "w2", "Bakso", "Bakso Kenyal", 15000.0, R.drawable.food5), + FoodItem("f6", "w2", "Pecel", "Sayur Dengan Bumbu Kacang", 22000.0, R.drawable.food6) + ) + "w3" -> listOf( + FoodItem("f7", "w3", "Udang Goreng", "Udang Segar Crispy", 45000.0, R.drawable.food7), + FoodItem("f8", "w3", "Ikan Bakar", "Ikan Bakar Bumbu Merah", 35000.0, R.drawable.food8), + FoodItem("f9", "w3", "Kepiting Saus Padang", "Pedas Menggugah Selera", 60000.0, R.drawable.food9) + ) + else -> emptyList() + } + + val filteredFoodItems = foodItems.filter { + it.name.contains(searchQuery, ignoreCase = true) + } + + Column(modifier = Modifier.fillMaxSize()) { + TextField( + value = searchQuery, + onValueChange = { searchQuery = it }, + label = { Text("Cari Menu...") }, + modifier = Modifier + .padding(8.dp) + .fillMaxWidth(), + singleLine = true + ) + + if (filteredFoodItems.isEmpty()) { + Text( + text = "Tidak ada item yang cocok", + modifier = Modifier + .fillMaxWidth() + .padding(16.dp), + color = Color.Gray, + fontSize = 16.sp, + textAlign = TextAlign.Center + ) + } else { + LazyColumn(modifier = Modifier.fillMaxSize()) { + items(filteredFoodItems) { foodItem -> + FoodCard( + foodItem = foodItem, + onAddToCart = { + selectedFood = foodItem + showDialog = true + } + ) + } + } + } + } + + if (showDialog && selectedFood != null) { + QuantityDialog( + foodItem = selectedFood!!, + onDismiss = { showDialog = false }, + onConfirm = { quantity -> + onAddToCart(selectedFood!!, quantity) + showDialog = false + } + ) + } +} + +@Composable +fun FoodCard(foodItem: FoodItem, onAddToCart: () -> Unit) { + Card( + shape = RoundedCornerShape(8.dp), + modifier = Modifier + .padding(8.dp) + .fillMaxWidth() + ) { + Row(modifier = Modifier.fillMaxWidth()) { + Image( + painter = painterResource(id = foodItem.imageResId), + contentDescription = foodItem.name, + contentScale = ContentScale.Crop, + modifier = Modifier.size(100.dp) + ) + + Column( + modifier = Modifier + .padding(16.dp) + .weight(1f) + ) { + Text(text = foodItem.name, fontWeight = FontWeight.Bold, fontSize = 18.sp) + Text(text = foodItem.description, fontSize = 14.sp, color = Color.Gray) + Text( + text = "Rp ${String.format("%,d", foodItem.price.toInt())}", + fontWeight = FontWeight.Bold, + fontSize = 16.sp, + color = Color(0xFF4CAF50) + ) + } + + Button( + onClick = onAddToCart, + modifier = Modifier.padding(16.dp), + colors = ButtonDefaults.buttonColors(containerColor = Color(0xFF4CAF50)) + ) { + Text("Tambah") + } + } + } +} + +@Composable +fun QuantityDialog( + foodItem: FoodItem, + onDismiss: () -> Unit, + onConfirm: (Int) -> Unit +) { + var quantity by remember { mutableStateOf(1) } + + AlertDialog( + onDismissRequest = onDismiss, + title = { Text("Pilih Jumlah") }, + text = { + Column { + Text(foodItem.name, fontWeight = FontWeight.Bold) + Spacer(modifier = Modifier.height(8.dp)) + Row( + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.SpaceBetween, + modifier = Modifier.fillMaxWidth() + ) { + IconButton(onClick = { if (quantity > 1) quantity-- }) { + Icon(Icons.Default.Remove, "Kurangi") + } + Text( + text = quantity.toString(), + fontSize = 18.sp, + fontWeight = FontWeight.Bold + ) + IconButton(onClick = { quantity++ }) { + Icon(Icons.Default.Add, "Tambah") + } + } + } + }, + confirmButton = { + TextButton(onClick = { onConfirm(quantity) }) { + Text("Tambah") + } + }, + dismissButton = { + TextButton(onClick = onDismiss) { + Text("Batal") + } + } + ) +} + +@Composable +fun CartScreen( + cart: List, + onRemoveItem: (CartItem) -> Unit, + onUpdateQuantity: (CartItem, Int) -> Unit, + onCheckout: () -> Unit +) { + Column(modifier = Modifier.fillMaxSize()) { + LazyColumn( + modifier = Modifier + .weight(1f) + .padding(8.dp) + ) { + items(cart) { cartItem -> + Card( + modifier = Modifier + .fillMaxWidth() + .padding(8.dp) + ) { + Row( + modifier = Modifier + .fillMaxWidth() + .padding(16.dp), + verticalAlignment = Alignment.CenterVertically, + horizontalArrangement = Arrangement.SpaceBetween + ) { + Column(modifier = Modifier.weight(1f)) { + Text( + text = cartItem.foodItem.name, + fontWeight = FontWeight.Bold, + fontSize = 16.sp + ) + Text( + text = "Rp ${String.format("%,d", (cartItem.foodItem.price * cartItem.quantity).toInt())}", + color = Color.Gray + ) + Row( + verticalAlignment = Alignment.CenterVertically, + modifier = Modifier.padding(top = 8.dp) + ) { + IconButton( + onClick = { onUpdateQuantity(cartItem, cartItem.quantity - 1) } + ) { + Icon(Icons.Default.Remove, "Kurangi") + } + Text( + text = cartItem.quantity.toString(), + modifier = Modifier.padding(horizontal = 8.dp), + fontWeight = FontWeight.Bold + ) + IconButton( + onClick = { onUpdateQuantity(cartItem, cartItem.quantity + 1) } + ) { + Icon(Icons.Default.Add, "Tambah") + } + } + } + IconButton( + onClick = { onRemoveItem(cartItem) } + ) { + Icon(Icons.Default.Delete, "Hapus") + } + } + } + } + } + + Card( + modifier = Modifier + .fillMaxWidth() + .padding(8.dp) + ) { + Column( + modifier = Modifier.padding(16.dp) + ) { + Row( + modifier = Modifier.fillMaxWidth(), + horizontalArrangement = Arrangement.SpaceBetween + ) { + Text( + text = "Total Pembayaran", + fontWeight = FontWeight.Bold, + fontSize = 18.sp + ) + Text( + text = "Rp ${String.format("%,d", cart.sumOf { (it.foodItem.price * it.quantity).toInt() })}", + fontWeight = FontWeight.Bold, + fontSize = 18.sp, + color = Color(0xFF4CAF50) + ) + } + + Button( + onClick = onCheckout, + enabled = cart.isNotEmpty(), + modifier = Modifier + .fillMaxWidth() + .padding(top = 16.dp), + colors = ButtonDefaults.buttonColors( + containerColor = Color(0xFF4CAF50), + disabledContainerColor = Color.Gray + ) + ) { + Text( + text = "Checkout", + color = Color.White, + modifier = Modifier.padding(vertical = 4.dp) + ) + } + } + } + } +} + +object R { + object drawable { + const val warung1 = android.R.drawable.ic_menu_report_image + const val warung2 = android.R.drawable.ic_menu_report_image + const val warung3 = android.R.drawable.ic_menu_report_image + const val food1 = android.R.drawable.ic_menu_report_image + const val food2 = android.R.drawable.ic_menu_report_image + const val food3 = android.R.drawable.ic_menu_report_image + const val food4 = android.R.drawable.ic_menu_report_image + const val food5 = android.R.drawable.ic_menu_report_image + const val food6 = android.R.drawable.ic_menu_report_image + const val food7 = android.R.drawable.ic_menu_report_image + const val food8 = android.R.drawable.ic_menu_report_image + const val food9 = android.R.drawable.ic_menu_report_image + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/kantinku/ui/theme/Color.kt b/app/src/main/java/com/example/kantinku/ui/theme/Color.kt new file mode 100644 index 0000000..0cc77ea --- /dev/null +++ b/app/src/main/java/com/example/kantinku/ui/theme/Color.kt @@ -0,0 +1,11 @@ +package com.example.kantinku.ui.theme + +import androidx.compose.ui.graphics.Color + +val Purple80 = Color(0xFFD0BCFF) +val PurpleGrey80 = Color(0xFFCCC2DC) +val Pink80 = Color(0xFFEFB8C8) + +val Purple40 = Color(0xFF6650a4) +val PurpleGrey40 = Color(0xFF625b71) +val Pink40 = Color(0xFF7D5260) \ No newline at end of file diff --git a/app/src/main/java/com/example/kantinku/ui/theme/Theme.kt b/app/src/main/java/com/example/kantinku/ui/theme/Theme.kt new file mode 100644 index 0000000..eff6e58 --- /dev/null +++ b/app/src/main/java/com/example/kantinku/ui/theme/Theme.kt @@ -0,0 +1,46 @@ +package com.example.kantinku.ui.theme + +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.* +import androidx.compose.runtime.Composable +import androidx.compose.ui.graphics.Color + +private val LightColorScheme = lightColorScheme( + primary = Color(0xFF4CAF50), + onPrimary = Color.White, + secondary = Color(0xFFFFC107), + onSecondary = Color.Black, + background = Color(0xFFF1F1F1), + onBackground = Color.Black, + surface = Color.White, + onSurface = Color.Black +) + +private val DarkColorScheme = darkColorScheme( + primary = Color(0xFF388E3C), + onPrimary = Color.Black, + secondary = Color(0xFFFFA000), + onSecondary = Color.Black, + background = Color(0xFF303030), + onBackground = Color.White, + surface = Color(0xFF424242), + onSurface = Color.White +) + +@Composable +fun KantinKuTheme( + darkTheme: Boolean = isSystemInDarkTheme(), + content: @Composable () -> Unit +) { + val colors = if (darkTheme) { + DarkColorScheme + } else { + LightColorScheme + } + + MaterialTheme( + colorScheme = colors, + typography = Typography, + content = content + ) +} diff --git a/app/src/main/java/com/example/kantinku/ui/theme/Type.kt b/app/src/main/java/com/example/kantinku/ui/theme/Type.kt new file mode 100644 index 0000000..e55a9bb --- /dev/null +++ b/app/src/main/java/com/example/kantinku/ui/theme/Type.kt @@ -0,0 +1,34 @@ +package com.example.kantinku.ui.theme + +import androidx.compose.material3.Typography +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +// Set of Material typography styles to start with +val Typography = Typography( + bodyLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.5.sp + ) + /* Other default text styles to override + titleLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 22.sp, + lineHeight = 28.sp, + letterSpacing = 0.sp + ), + labelSmall = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Medium, + fontSize = 11.sp, + lineHeight = 16.sp, + letterSpacing = 0.5.sp + ) + */ +) \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..facc3f0 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + KantinKu + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..85534f5 --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +