0

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?

blackgreen
  • 34,072
  • 23
  • 111
  • 129

1 Answers1

0

Kindly Read this Documentation

Mobin Ansar
  • 631
  • 2
  • 13