fullAutoMode static method

dynamic fullAutoMode()

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

Implementation

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