hide static method

Future<void> hide()

Ask iOS to hide the iPhone X home indicator (bar at bottom of screen). Note: it will still show up when the user gestures near the bottom of the screen.

Implementation

static Future<void> hide() async {
  await _channel.invokeMethod('hide');
}