From edb9b33baa31c79c48783dcce100bb5685dab0ee Mon Sep 17 00:00:00 2001 From: 202310715277 LALU MUHAMMAD ANGGANA SUBHAN <202310715277@mhs.ubharajaya.ac.id> Date: Thu, 25 Sep 2025 12:00:45 +0700 Subject: [PATCH] Upload files to "/" Tugas Android Angga --- MainActivity.kt | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 MainActivity.kt diff --git a/MainActivity.kt b/MainActivity.kt new file mode 100644 index 0000000..1c988bd --- /dev/null +++ b/MainActivity.kt @@ -0,0 +1,51 @@ +package com.example.greetingcard + +import android.os.Bundle +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.Surface +import androidx.compose.material3.Text +import androidx.compose.runtime.Composable +import androidx.compose.ui.Modifier +import androidx.compose.ui.graphics.Color +import androidx.compose.ui.tooling.preview.Preview +import androidx.compose.ui.unit.dp +import com.example.greetingcard.ui.theme.GreetingCardTheme + +class MainActivity : ComponentActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContent { + GreetingCardTheme { + // A surface container using the 'background' color from the theme + Surface( + modifier = Modifier.fillMaxSize(), + color = MaterialTheme.colorScheme.background + ) { + Greeting("Lalu Angga") + } + } + } + } +} + +@Composable +fun Greeting(name: String, modifier: Modifier = Modifier) { + Surface(color = Color.Cyan) { + Text( + text = "Hi, Nama Saya adalah $name!", + modifier = modifier.padding(24.dp) + ) + } +} + +@Preview(showBackground = true) +@Composable +fun GreetingPreview() { + GreetingCardTheme { + Greeting("Lalu Angga") + } +} \ No newline at end of file