# `GSFlowView.arrangedSubviews`

*Instance Property*

The subviews currently managed by the flow layout. Use -addArrangedSubview: / -removeArrangedSubview: rather than the raw NSView add/remove methods when managing subviews programmatically.

## Declaration

```swift
var arrangedSubviews: [NSView] { get }
```

```objc
@property (nonatomic, copy, readonly) NSArray<NSView *> * arrangedSubviews;
```

```python
arrangedSubviews() -> list[NSView]
```

