LazyColumn
Functions summary
Unit |
@ComposableA vertical scrolling list that only lays out the currently visible items. |
Unit |
@ExperimentalGlanceApiA vertical scrolling list that only lays out the currently visible items. |
Unit |
@ComposableA vertical scrolling list that only lays out the currently visible items. |
Functions
LazyColumn
@Composable
fun LazyColumn(
modifier: GlanceModifier = GlanceModifier,
horizontalAlignment: Alignment.Horizontal = Alignment.Start,
content: LazyListScope.() -> Unit
): Unit
A vertical scrolling list that only lays out the currently visible items. The content block defines a DSL which allows you to emit different list items.
| Parameters | |
|---|---|
modifier: GlanceModifier = GlanceModifier |
the modifier to apply to this layout |
horizontalAlignment: Alignment.Horizontal = Alignment.Start |
the horizontal alignment applied to the items. |
content: LazyListScope.() -> Unit |
a block which describes the content. Inside this block you can use methods like |
LazyColumn
@ExperimentalGlanceApi
@Composable
fun LazyColumn(
activityOptions: Bundle,
modifier: GlanceModifier = GlanceModifier,
horizontalAlignment: Alignment.Horizontal = Alignment.Start,
content: LazyListScope.() -> Unit
): Unit
A vertical scrolling list that only lays out the currently visible items. The content block defines a DSL which allows you to emit different list items.
| Parameters | |
|---|---|
activityOptions: Bundle |
Additional options built from an |
modifier: GlanceModifier = GlanceModifier |
the modifier to apply to this layout |
horizontalAlignment: Alignment.Horizontal = Alignment.Start |
the horizontal alignment applied to the items. |
content: LazyListScope.() -> Unit |
a block which describes the content. Inside this block you can use methods like |
LazyColumn
@Composable
fun LazyColumn(
verticalScrollMode: VerticalScrollMode,
modifier: GlanceModifier = GlanceModifier,
horizontalAlignment: Alignment.Horizontal = Alignment.Start,
content: LazyListScope.() -> Unit
): Unit
A vertical scrolling list that only lays out the currently visible items. The content block defines a DSL which allows you to emit different list items.
| Parameters | |
|---|---|
verticalScrollMode: VerticalScrollMode |
how to handle scrolling. See |
modifier: GlanceModifier = GlanceModifier |
the modifier to apply to this layout |
horizontalAlignment: Alignment.Horizontal = Alignment.Start |
the horizontal alignment applied to the items. |
content: LazyListScope.() -> Unit |
a block which describes the content. Inside this block you can use methods like |