When I try to set status bar color using library (flutter_statusbarcolor_ns) or directly using direct flutter code:
void _setStatusBarColor(Color color) {
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle(
statusBarColor: color,
));
}
Status bar color is not getting set properly. It is working in ipad portrait mode perfectly but cutting in nearly half (or 60%) in ipad landscape mode.
Note: I tried many things including different libraries, checking flutter native codes, but no luck. Any help is appreciated.

