I was using the following code to show only status bar.
SystemChrome.setEnabledSystemUIOverlays([
SystemUiOverlay.top
])
but it started giving me a warning:
setEnabledSystemUIOverlays is deprecated and shouldn't be used. Migrate to setEnabledSystemUIMode.
So, how do I fix it?