I have an appbar in my flutter app. I'm use an padding to display a container
Padding(
padding: const EdgeInsets.only(
top: kToolbarHeight + kTextTabBarHeight,)
With Android and all iphone devices, that's ok like this image
But with Iphone pro 14 max and Safearea feature, my padding is not working (see image)
Should i have to add a constant in my padding to support "SafeArea iphone 14 max pro" feature ?
Thx