landscapeAutoMode static method

dynamic landscapeAutoMode()

将设备旋转到横向自动模式

Implementation

static landscapeAutoMode() async {
  await SystemChrome.setPreferredOrientations([
    DeviceOrientation.landscapeRight,
    DeviceOrientation.landscapeLeft,
  ]);
}