Post

Replies

Boosts

Views

Activity

Reply to How to hide LayoutView from a Layout?
Hello I've been facing a similar issue. My case is the following: I have some grid-like custom Layout that needs to have a linelimit parameter. In placeSubviews if I don't call .place(at: .., from...) the subviews gets in the middle of the view. I found a workaround where I simply changed my view height calculation to only stop at my limit, but I'm still "placing" the other views that are out of my limit, then clipping will work. For example: Let's assume I have 12 subviews, and can fit 3 of them per Row in my grid. If my line limit is set to 3 I will render each of the 4 row BUT in sizeThatFits only return the height of 3 rows. Then in the parent that calls the CustomGridLayout I just need to call .clipped() so that subviews placed outside of the parent are not visible. I don't know if that helps your case. It would be interesting to have a way to handle that case from the Layout implemented by Apple.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jan ’25