systemGestureInsets property

  1. @Deprecated('Use WidgetTester.view.systemGestureInsets instead. ' 'Deprecated to prepare for the upcoming multi-window support. ' 'This feature was deprecated after v3.9.0-0.1.pre.')
  2. @override
ViewPadding systemGestureInsets
override

The number of physical pixels on each side of the display rectangle into which the view can render, but where the operating system will consume input gestures for the sake of system navigation.

For example, an operating system might use the vertical edges of the screen, where swiping inwards from the edges takes users backward through the history of screens they previously visited.

When this property changes, PlatformDispatcher.onMetricsChanged is called.

See also:

Implementation

@Deprecated(
  'Use WidgetTester.view.systemGestureInsets instead. '
  'Deprecated to prepare for the upcoming multi-window support. '
  'This feature was deprecated after v3.9.0-0.1.pre.'
)
@override
ViewPadding get systemGestureInsets => _view.systemGestureInsets;