Hello,
Thank you for reaching out.
To answer your question, ios:Page.UseSafeArea="false"
doesn't work in native embedding because it is designed for MAUI's NavigationPage
renderer, which isn't present when embedding MAUI content as in native iOS apps.
In native embedding, iOS treats your MAUI content as a regular UIView
, so the native UIViewController
's safe area constraints take precedence.
I recommend you to look into iOS native API safeAreaLayoutGuide - Apple Developer when working with native embedding to achieve consistent layout behavior.
I hope this clarifies the issue. If my answer solves your problem, feel free to interact with the system accordingly.
Thank you.