Happy Birthday Dhiwa!
Apakah Anda bingung cara memberikan ucapan ulang tahun kepada teman Anda? Apabila iya, ucapan ulang tahun melalui aplikasi android bisa menjadi pilihan. Yuk kita mulai membuat ucapan ulang tahun dengan mengikuti tutorial yang ada (tutorial).
Hasil Tampilan
Sumber Kode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.happybirthday | |
import android.os.Bundle | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.compose.foundation.layout.Arrangement | |
import androidx.compose.foundation.layout.fillMaxSize | |
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.tooling.preview.Preview | |
import androidx.compose.ui.unit.sp | |
import com.example.happybirthday.ui.theme.HappyBirthdayTheme | |
import androidx.compose.foundation.layout.Column | |
import androidx.compose.foundation.layout.padding | |
import androidx.compose.ui.Alignment | |
import androidx.compose.ui.text.style.TextAlign | |
import androidx.compose.ui.unit.dp | |
class MainActivity : ComponentActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContent { | |
HappyBirthdayTheme { | |
// A surface container using the 'background' color from the theme | |
Surface( | |
modifier = Modifier.fillMaxSize(), | |
color = MaterialTheme.colorScheme.background | |
) { | |
GreetingText( | |
message = "Happy Birthday Dhiwa!", | |
from = "From Surya", | |
modifier = Modifier.padding(8.dp) | |
) | |
} | |
} | |
} | |
} | |
} | |
@Preview(showBackground = true) | |
@Composable | |
fun BirthdayCardPreview() { | |
HappyBirthdayTheme { | |
GreetingText(message = "Happy Birtday Dhiwa!", from = "From Surya") | |
} | |
} | |
@Composable | |
fun GreetingText(message: String, from: String, modifier: Modifier = Modifier) { | |
Column( | |
verticalArrangement = Arrangement.Center, | |
modifier = modifier.padding(8.dp) | |
) { | |
Text( | |
text = message, | |
fontSize = 90.sp, | |
lineHeight = 116.sp, | |
textAlign = TextAlign.Center | |
) | |
Text( | |
text = from, | |
fontSize = 36.sp, | |
modifier = Modifier | |
.padding(16.dp) | |
.align(alignment = Alignment.End) | |
) | |
} | |
} |
HBD Dhiwaa 🥳
BalasHapusMakasih Kak!!! 😅
BalasHapusIya, sama"
BalasHapus