diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 61a9130..fb7f4a8 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml index 7b46144..0897082 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -4,16 +4,15 @@ diff --git a/.idea/misc.xml b/.idea/misc.xml index 7bb9736..ce859f2 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,7 +1,7 @@ - + diff --git a/Demo/1.png b/Demo/1.png deleted file mode 100644 index 38573ae..0000000 Binary files a/Demo/1.png and /dev/null differ diff --git a/Demo/2.png b/Demo/2.png deleted file mode 100644 index ef68842..0000000 Binary files a/Demo/2.png and /dev/null differ diff --git a/Demo/3.png b/Demo/3.png deleted file mode 100644 index 38b7aa6..0000000 Binary files a/Demo/3.png and /dev/null differ diff --git a/Demo/pr_amit.svg b/Demo/pr_amit.svg deleted file mode 100644 index 6cc296a..0000000 --- a/Demo/pr_amit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Demo/previeww.gif b/Demo/previeww.gif deleted file mode 100644 index 1ed22f9..0000000 Binary files a/Demo/previeww.gif and /dev/null differ diff --git a/README.md b/README.md index 82a7d1f..3a2402d 100644 --- a/README.md +++ b/README.md @@ -1,63 +1,18 @@ # BMI Calculator ( Using - Jetpack Compose ) -[⬇️Download App](https://drive.google.com/file/d/1OXT7n2-iT-DbYn90jI0qzz9MS6RDLmcr/view?usp=sharing) +## CARA MENGGUNAKAN APLIKASI BMI +* Buka aplikasi kalkulator BMI di perangkat Anda. +* Masukkan berat badan Anda di kolom yang disediakan (biasanya dalam kg). +* Masukkan tinggi badan Anda di kolom yang disediakan (biasanya dalam cm atau m). +* Klik tombol "Hitung" atau "Calculate." +* Aplikasi akan menampilkan nilai BMI Anda beserta interpretasi kategori berdasarkan nilai tersebut. -||| -|:----------------------------------------:|:-----------------------------------------:| -| Android | Android | - -

- -

- - ## 🤔 What is this App - - ✍️ Here is "BMI Calculator". You can view your BMI by inputting your height and weight with just one click. - - ## 💡 Features Used +# FUNGSI BMI CALCULATOR +* Menentukan Status Berat Badan +Berdasarkan nilai BMI, kalkulator memberikan kategori status berat badan -1. JetPack Compose (Kotlin) +Kurus: BMI kurang dari 18,5 +Normal: BMI antara 18,5 dan 24,9 +Berat Badan Berlebih: BMI antara 25 dan 29,9 +Obesitas: BMI 30 ke atas - - - -

Project Admin 🤵

- -

- - -

-      -      -      -

- -
- - ## 📸 Screenshots - - - - -|||| -|:----------------------------------------:|:-----------------------------------------:|:-----------------------------------------:| -| ![Imgur](Demo/1.png) | ![Imgur](Demo/2.png) | ![Imgur](Demo/3.png) | - - - -

- -

- - -

📝 Created by

- - -

Amit maity

- - ansuman-behera-7b00b61b6 - _ansuman_behera_/ - _ansuman_behera_/ - _ansuman_behera_/ - _ansuman_behera_/ - _ansuman_behera_/ diff --git a/app/src/main/java/com/example/bmicalculator/MainActivity.kt b/app/src/main/java/com/example/bmicalculator/MainActivity.kt index 4a800e2..a22f7df 100644 --- a/app/src/main/java/com/example/bmicalculator/MainActivity.kt +++ b/app/src/main/java/com/example/bmicalculator/MainActivity.kt @@ -19,12 +19,9 @@ import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip import androidx.compose.ui.graphics.Color import androidx.compose.ui.platform.LocalContext -import androidx.compose.ui.res.painterResource import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.text.font.FontStyle import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.text.input.KeyboardType -import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.sp import com.example.bmicalculator.ui.theme.* @@ -49,7 +46,7 @@ class MainActivity : ComponentActivity() { Box( modifier = Modifier .fillMaxSize() - .background(DeepBlue)) + .background(white)) { Column { GreetingSection() @@ -58,7 +55,7 @@ class MainActivity : ComponentActivity() { text = "Weight", fontWeight = FontWeight.SemiBold, fontSize = 25.sp, - color = Color.White, + color = Color.Black, modifier = Modifier .padding(start = 30.dp, bottom = 20.dp) ) @@ -66,12 +63,12 @@ class MainActivity : ComponentActivity() { TextField( value = weight, label = { - Text(text = "Weight", color = Color.White) + Text(text = "Weight", color = Color.Black) }, onValueChange = { weight = it }, - textStyle = TextStyle(color = Color.White, fontSize = 21.sp), + textStyle = TextStyle(color = Color.Black, fontSize = 21.sp), keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Decimal), singleLine = true, modifier = Modifier @@ -90,7 +87,7 @@ class MainActivity : ComponentActivity() { .padding(15.dp) ) { - Text(text = "Kg", color = Color.White) + Text(text = "Kg", color = Color.Black) } } @@ -99,7 +96,7 @@ class MainActivity : ComponentActivity() { text = "Height", fontWeight = FontWeight.SemiBold, fontSize = 25.sp, - color = Color.White, + color = Color.Black, modifier = Modifier .padding(start = 30.dp, bottom = 20.dp) ) @@ -107,12 +104,12 @@ class MainActivity : ComponentActivity() { TextField( value = height, label = { - Text(text = "Height", color = Color.White) + Text(text = "Height", color = Color.Black) }, onValueChange = { height = it }, - textStyle = TextStyle(color = Color.White, fontSize = 21.sp), + textStyle = TextStyle(color = Color.Black, fontSize = 21.sp), keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Decimal), singleLine = true, modifier = Modifier @@ -131,7 +128,7 @@ class MainActivity : ComponentActivity() { .padding(15.dp) ) { - Text(text = "Cm", color = Color.White) + Text(text = "Cm", color = Color.Black) } } @@ -147,7 +144,7 @@ class MainActivity : ComponentActivity() { .fillMaxWidth(0.6f) .height(60.dp) .clip(RoundedCornerShape(30.dp)) - .background(LightRed) + .background(DarkerButtonBlue) .padding(16.dp) .clickable { val one = weight.toDouble() @@ -161,7 +158,7 @@ class MainActivity : ComponentActivity() { Text( text = "Calculate" , fontSize = 21.sp , - color = Color.White ,) + color = Color.Black ,) } Spacer(modifier = Modifier.height(40.dp)) Box( @@ -171,7 +168,7 @@ class MainActivity : ComponentActivity() { Text( text = ans_bmi , fontSize = 22.sp , - color = Color.White ,) + color = Color.Black ,) } } @@ -198,13 +195,13 @@ fun GreetingSection() { Text( text = "BMI Calculator", style = MaterialTheme.typography.h4, - color = Color.White, + color = Color.Black, fontWeight = FontWeight.Bold ) Text( - text = "made by Amit Maity", + text = "Mohamad Diandra Ferdiansyah", style = MaterialTheme.typography.body1, - color = Color.White , + color = Color.Black , ) } diff --git a/app/src/main/java/com/example/bmicalculator/ui/theme/Color.kt b/app/src/main/java/com/example/bmicalculator/ui/theme/Color.kt index 9ab72e7..15825a0 100644 --- a/app/src/main/java/com/example/bmicalculator/ui/theme/Color.kt +++ b/app/src/main/java/com/example/bmicalculator/ui/theme/Color.kt @@ -3,12 +3,11 @@ package com.example.bmicalculator.ui.theme import androidx.compose.ui.graphics.Color -val DeepBlue = Color(0xff06164c) +val white = Color(0xFFFFFFFF) val Purple200 = Color(0xFFBB86FC) val Purple500 = Color(0xFF6200EE) -val Purple700 = Color(0xFF3700B3) +val Purple700 = Color(0xff9aa5c4) val Teal200 = Color(0xFF03DAC5) val ButtonBlue = Color(0xff505cf3) val DarkerButtonBlue = Color(0xff566894) -val LightRed = Color(0xfffc879a) val AquaBlue = Color(0xff9aa5c4) diff --git a/build.gradle b/build.gradle index 3868cde..1b15c6d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'com.android.application' version '7.2.1' apply false - id 'com.android.library' version '7.2.1' apply false + id 'com.android.application' version '7.4.2' apply false + id 'com.android.library' version '7.4.2' apply false id 'org.jetbrains.kotlin.android' version '1.6.21' apply false } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index aa991fc..8049c68 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists