import androidx.compose.foundation.Image import androidx.compose.foundation.ScrollableColumn import androidx.compose.foundation.layout.* import androidx.compose.foundation.shape.CircleShape import androidx.compose.material.MaterialTheme import androidx.compose.material.OutlinedTextField import androidx.compose.material.Text 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.res.stringResource import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp @Composable fun ProfileScreen() { var name by rememberSaveable { mutableStateOf("") } var email by rememberSaveable { mutableStateOf("") } var colorCount by rememberSaveable { mutableStateOf("") } Column( modifier = Modifier .fillMaxSize() .padding(16.dp) .verticalScroll(rememberScrollState()), verticalArrangement = Arrangement.Center, horizontalAlignment = Alignment.CenterHorizontally ) { Text( text = "MasterAnd", style = MaterialTheme.typography.h3, modifier = Modifier.padding(bottom = 48.dp) ) Box( modifier = Modifier .size(100.dp) .clip(CircleShape) .background(Color.LightGray), contentAlignment = Alignment.Center ) { Image( painter = painterResource(id = R.drawable.ic_baseline_question_mark_24), contentDescription = "Profile photo", contentScale = ContentScale.Crop ) } Spacer(modifier = Modifier.height(16.dp)) OutlinedTextField( modifier = Modifier.fillMaxWidth(), value = name, onValueChange = { name = it }, label = { Text("Name") }, singleLine = true, isError = name.isEmpty(), keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Text), isErrorValue = name.isEmpty(), visualTransformation = if (name.isEmpty()) VisualTransformation.None else VisualTransformation.None, trailingIcon = { if (name.isEmpty()) { Icon( imageVector = Icons.Default.Error, contentDescription = stringResource(id = R.string.error_icon_description), tint = MaterialTheme.colors.error ) } } ) OutlinedTextField( modifier = Modifier.fillMaxWidth(), value = email, onValueChange = { email = it }, label = { Text("Email") }, singleLine = true, isError = !android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches(), keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Text), trailingIcon = { if (!android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches()) { Icon( imageVector = Icons.Default.Error, contentDescription = stringResource(id = R.string.error_icon_description), tint = MaterialTheme.colors.error ) } } ) OutlinedTextField( modifier = Modifier.fillMaxWidth(), value = colorCount, onValueChange = { colorCount = it }, label = { Text("Color Count (5-10)") }, singleLine = true, isError = !(colorCount.toIntOrNull() in 5..10), keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Number), trailingIcon = { if (!(colorCount.toIntOrNull() in 5..10)) { Icon( imageVector = Icons.Default.Error, contentDescription = stringResource(id = R.string.error_icon_description), tint = MaterialTheme.colors.error ) } } ) } } @Preview @Composable fun ProfileScreenPreview() { ProfileScreen() }
Write, Run & Share Kotlin code online using OneCompiler’s Kotlin online compiler for free. It’s a modern and fast online playground for Kotlin, supporting the latest version and ideal for learning, experimenting, and sharing code instantly.
Kotlin is a statically typed, modern programming language developed by JetBrains. It runs on the JVM and is fully interoperable with Java. Kotlin is concise, expressive, and safe, and it’s officially supported by Google for Android app development.
The following is a simple Kotlin program that prints a greeting:
fun main() {
println("Hello, OneCompiler!")
}
OneCompiler’s Kotlin editor supports stdin. You can provide input using the I/O tab. Here's a sample program that reads a line of input and prints a greeting:
fun main() {
print("Enter your name: ")
val name = readLine()
println("Hello, $name")
}
val name: String = "OneCompiler" // Immutable
var age: Int = 25 // Mutable
Kotlin supports type inference, so explicit types are optional:
val city = "Hyderabad"
var count = 10
val score = 85
if (score >= 50) {
println("Pass")
} else {
println("Fail")
}
for (i in 1..5) {
println(i)
}
var i = 1
while (i <= 5) {
println(i)
i++
}
var j = 1
do {
println(j)
j++
} while (j <= 5)
fun add(a: Int, b: Int): Int {
return a + b
}
fun greet(name: String) = "Hello, $name"
val items = listOf("apple", "banana", "cherry")
for (item in items) {
println(item)
}
This guide provides a quick reference to Kotlin programming syntax and features. Start coding in Kotlin using OneCompiler’s Kotlin online compiler today!