From a1fffbe5948e3810c317231ff628b5b58a8b54ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A7=A3=E8=B7=AF?= Date: Mon, 4 Jul 2022 17:15:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=AD=A3=E8=8B=B1=E6=96=87=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E4=B8=ADList=E5=9C=A8Grid=E6=96=87=E6=A1=A3=E5=92=8Cd?= =?UTF-8?q?ts=E6=8E=A5=E5=8F=A3=E6=8F=8F=E8=BF=B0=E4=B8=8D=E4=B8=80?= =?UTF-8?q?=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 解路 --- en/application-dev/reference/arkui-ts/ts-container-list.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/en/application-dev/reference/arkui-ts/ts-container-list.md b/en/application-dev/reference/arkui-ts/ts-container-list.md index 85f1176e15..e8880c88f7 100644 --- a/en/application-dev/reference/arkui-ts/ts-container-list.md +++ b/en/application-dev/reference/arkui-ts/ts-container-list.md @@ -20,13 +20,14 @@ This component contains the child component [](ts-container-listitem.m ## APIs -List(value:{space?: number, initialIndex?: number}) +List(value:{space?: number, initialIndex?: number, scroller?: Scroller}) - Parameters | Name | Type | Mandatory | Default Value | Description | | -------- | -------- | -------- | -------- | -------- | | space | number | No | 0 | Spacing between list items. | | initialIndex | number | No | 0 | Item displayed at the beginning of the component when the current list is loaded for the first time, that is, the first item to be displayed. If the configured sequence number is greater than the sequence number of the last item, the setting does not take effect. | + | scroller | [Scroller](ts-container-scroll.md#scroller) | Yes | - | Scroller, which can be bound to and control scrollable components. | ## Attributes -- GitLab