systemGestureInsets property

  1. @override
FakeViewPadding systemGestureInsets
override

The system gesture insets to use for this test.

Defaults to the value provided by FlutterView.systemGestureInsets. This can only be set in a test environment to emulate different view configurations. A standard FlutterView is not mutable from the framework.

See also:

Implementation

@override
FakeViewPadding get systemGestureInsets => _systemGestureInsets ?? FakeViewPadding._wrap(_view.systemGestureInsets);
void systemGestureInsets=(FakeViewPadding value)

Implementation

set systemGestureInsets(FakeViewPadding value) {
  _systemGestureInsets = value;
  platformDispatcher.onMetricsChanged?.call();
}