I have a SwiftUI view which is an HStack of two views:
1. A simple Text view, which acts as sort of a label, and is always a single line
2. A custom UIKit view which is a UITextView with lots of custom formatting
My desire is to restrict the height of the UITextView to match the height of the Text view (single line, height dependent on system fonts, etc). I've tried many ways to go about this, but I can't seem to find something that works. GeometryReader seems to only pass parent attributes to child, but doesn't solve the "sibling" issue.
Any ideas or insight?
