Lines Matching refs:layoutSize
162 @State layoutSize:LayoutSize = {size:0};
181 @BuilderParam contentBuilder:((layoutSize: LayoutSize) => void);
182 @State layoutSize:LayoutSize = {size:0};
186 this.contentBuilder({size: this.layoutSize.size});
188 this.layoutSize.size += 1;
208 @State layoutSize:LayoutSize = {size:0};
219 Child({contentBuilder: this.componentBuilder,layoutSize:this.layoutSize});
227 @BuilderParam contentBuilder:((layoutSize: LayoutSize) => void);
228 @Link layoutSize:LayoutSize;
232 this.contentBuilder({size: this.layoutSize.size});
234 this.layoutSize.size += 1;