I want users to still see the status bar so I have done it like this:
if (Platform.isAndroid) {
SystemChrome.setEnabledSystemUIMode(
SystemUiMode.manual,
overlays: [SystemUiOverlay.top],
);
}
When user swipes from below, the navigation appears, but does not go away. How should I address this issue? Or is there any other way to do it?