How do you handle safeArea and <title> in HotwireNative app?

I’m trying out Hotwire Native and I’m seeing the following issues:

  1. the safe area is not supported out of the box where you see the “Sign In” header and the time overlap. Normally a device should know what the safe area should be but is this not handled natively by HotwireNative. Do people usually code something on the mobile device or add padding using something else in the views?

  2. Is it possible to have no title at all displayed? How does one do this? Is there an easy way to hide it?

When I made my app full screen, I used CSS (absolute positioning) to align the elements around this area. My situation might be a bit different though. I’m displaying a map with icons and not a traditional page.

For your second question, I think this is what you’re looking for:

self.navigator.rootViewController.setNavigationBarHidden(true, animated: false)