File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
app/src/main/java/com/commandiron/animatablecompose Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import androidx.compose.foundation.lazy.LazyColumn
66import androidx.compose.foundation.lazy.LazyRow
77import androidx.compose.foundation.lazy.rememberLazyListState
88import androidx.compose.foundation.shape.RoundedCornerShape
9+ import androidx.compose.material3.Card
910import androidx.compose.material3.CardDefaults
1011import androidx.compose.material3.Text
1112import androidx.compose.runtime.*
@@ -193,6 +194,21 @@ fun Show8InfoCard() {
193194 }
194195 }
195196 }
197+ LazyColumn (
198+ contentPadding = PaddingValues (16 .dp),
199+ verticalArrangement = Arrangement .spacedBy(16 .dp)
200+ ) {
201+ items(10 ) {
202+ Card (
203+ modifier = Modifier
204+ .fillMaxWidth()
205+ .height(100 .dp),
206+ colors = CardDefaults .cardColors(
207+ containerColor = Color (0xFFFFE2DB )
208+ )
209+ ) {}
210+ }
211+ }
196212 }
197213}
198214
You can’t perform that action at this time.
0 commit comments