@ristkof @twostraws Sad to say this is the contract…
`.fixedSize` forces a view to use its 'ideal size', per the docs. Its name just defies user expectations.
`.frame` is also badly named, as it technically allows overriding the size proposal a view offers to its container, the documented layout system.
Views take all the available space the container offers, up to their max width, but ideal size kicks in when space is unbounded, like scrollviews or when using fixedSize…
Think:
- `fixedSize` ignores container limits.
- `idealWidth`/`idealHeight` means that dimension when no container limits apply. (Meaning it's a fallback value, while maxWidth is treated like an ideal for a bounded canvas)
- `frame` means override the size proposal to the container.