MainActivity.kt
package com.cfsuman.jetpackcompose
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import androidx.activity.compose.setContent
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.lazy.*
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.font.FontFamily
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
MainContent()
}
}
@Composable
fun MainContent(){
val list = (1..100).map { it.toString() }
Box(
modifier = Modifier.fillMaxSize()
) {
LazyColumn(
modifier = Modifier
.background(Color(0xFFFEFEFA))
.wrapContentHeight()
.fillMaxWidth(),
contentPadding = PaddingValues(12.dp),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
var counter = 0
items(list){ txt ->
Card(
backgroundColor = if (counter % 2 == 0)
{ Color(0xFF8DB600)} else Color(0xFFDA1884),
modifier = Modifier
.fillMaxWidth(),
elevation = 8.dp,
shape = RoundedCornerShape(16.dp)
) {
Text(
text = txt,
fontWeight = FontWeight.Bold,
fontSize = 40.sp,
fontFamily = FontFamily.Cursive,
color = Color(0xFFFAE7B5),
textAlign = TextAlign.Center,
modifier = Modifier.padding(16.dp)
)
}
counter++
}
}
}
}
@Preview
@Composable
fun ComposablePreview(){
//MainContent()
}
}
- jetpack compose - Image shape
- jetpack compose - Image tint
- jetpack compose - Image from assets folder
- jetpack compose - How to use LazyColumn
- jetpack compose - How to use LazyRow
- jetpack compose - Accessing string resources
- jetpack compose - String resource positional formatting
- jetpack compose - String resource plurals
- jetpack compose - Text custom font
- jetpack compose - Accessing font resource
- jetpack compose - LazyColumn content spacing padding
- jetpack compose - LazyColumn scroll to top bottom
- jetpack compose - LazyColumn smooth scrolling
- jetpack compose - LazyColumn scroll to position
- jetpack compose - LazyColumn sticky header