An alert presented in Mac Catalyst vs. an alert presented in a cross-platform SwiftUI app.

Small things like this make me question if it was the right decision to go with Mac Catalyst.

Trying to recreate my UI in a cross-platform SwiftUI app. I've gotten the alert working except:

1. The TextField is a bit small. I can't seem to make it taller.
2. The TextField isn't focused when the alert is presented. This is very annoying. I tried all sorts of combinations of .focused() and can't seem to get it working.

@simonbs I ran into this too. Ended up using NSAlert instead.
@adam @simonbs Is it possible to add a text field to NSAlert somehow? I don't see it mentioned on https://developer.apple.com/documentation/appkit/nsalert
Apple Developer Documentation

@nighthawk @simonbs Yes, you can set it as the alert’s accessoryView.