showDisplaySettingView method

Future<void> showDisplaySettingView()

Displays the display settings view, where users can configure options such as scroll direction, scroll mode, and themes.

Example:

await controller.showDisplaySettingView();

Implementation

Future<void> showDisplaySettingView() async {
  await _channel.invokeMethod('show_display_settings_view');
}