diff --git a/en/application-dev/reference/arkui-ts/ts-container-waterflow.md b/en/application-dev/reference/arkui-ts/ts-container-waterflow.md index 68298be49f4f8d99223f4b8345cd64067fc30ce5..39c86b3cee5726a774379f039c0a450518dcbe02 100644 --- a/en/application-dev/reference/arkui-ts/ts-container-waterflow.md +++ b/en/application-dev/reference/arkui-ts/ts-container-waterflow.md @@ -14,6 +14,9 @@ The **\** component is a container that consists of cells formed by r The [\](ts-container-flowitem.md) child component is supported. +> **NOTE** +> +> When the **visibility** attribute of a child component in **\** is set to **None**, the child component is not displayed, but still takes up cells. ## APIs @@ -250,7 +253,7 @@ struct WaterflowDemo { build() { Column({ space: 2 }) { - WaterFlow({ footer: this.itemFoot, scroller: this.scroller }) { + WaterFlow({ footer: this.itemFoot.bind(this), scroller: this.scroller }) { LazyForEach(this.datasource, (item: number) => { FlowItem() { Column() {