I want to know how AppBar in flutter covers the notch area. Looking at the source code the App bar uses NavigationToolbar at its core. But I did not understand how it covers the entire notch area incase there is a notch.
The context behind asking this is I am using NavigationToolbar to achieve a design as shown in the screenshot below. For Android, it is working good but for IOS as in the screenshot, there is a gap at the top next to the notch. Even with
SafeArea(top:false)
I am not able to cover the area next to the notch. Any suggestions would be helpful.