Upload files to "/"
This commit is contained in:
parent
61c5b423b5
commit
25b33afb24
53
MainActivity.kt
Normal file
53
MainActivity.kt
Normal file
@ -0,0 +1,53 @@
|
||||
package com.example.hellowaord_tugas1
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.activity.ComponentActivity
|
||||
import androidx.activity.compose.setContent
|
||||
import androidx.activity.enableEdgeToEdge
|
||||
import androidx.compose.foundation.layout.fillMaxSize
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.material3.Scaffold
|
||||
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 com.example.hellowaord_tugas1.ui.theme.Hellowaordtugas1Theme
|
||||
|
||||
class MainActivity : ComponentActivity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
enableEdgeToEdge()
|
||||
setContent {
|
||||
Hellowaordtugas1Theme {
|
||||
Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding ->
|
||||
Greeting(
|
||||
name = "Arif Nurkhayan",
|
||||
modifier = Modifier.padding(innerPadding)
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun Greeting(name: String, modifier: Modifier = Modifier) {
|
||||
Surface(color = Color.Cyan) {
|
||||
Text(
|
||||
text = "My Name Is $name, " +
|
||||
"My NPM is 202310715128",
|
||||
modifier = modifier.padding(24.dp)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@Preview(showBackground = true)
|
||||
@Composable
|
||||
fun GreetingPreview() {
|
||||
Hellowaordtugas1Theme {
|
||||
Greeting("Arif Nurkhayan")
|
||||
}
|
||||
}
|
||||
BIN
Screenshot.jpg
Normal file
BIN
Screenshot.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 214 KiB |
Loading…
x
Reference in New Issue
Block a user