Flutter强制某个页面横屏

举报
yd_221104950 发表于 2020/12/02 23:54:38 2020/12/02
【摘要】 1.问题描述 在某个页面中使用flutter提供的方式来强制某个页面横屏: SystemChrome.setPreferredOrientations([ DeviceOrientation.portraitUp, DeviceOrientation.portraitDown ]); 1234 很遗憾!在Android上表现完美,但是在iOS中不能自动横屏,需...

1.问题描述

在某个页面中使用flutter提供的方式来强制某个页面横屏:

SystemChrome.setPreferredOrientations([ DeviceOrientation.portraitUp, DeviceOrientation.portraitDown
  ]);

  
 
  • 1
  • 2
  • 3
  • 4

很遗憾!在Android上表现完美,但是在iOS中不能自动横屏,需要手动旋转手机。
万幸!pub上有这样一个package,可以完美解决:

orientation

2.使用orientation

2.1.在pubspec.yaml 中添加如下依赖:

dependencies:
  orientation: ^1.2.0

  
 
  • 1
  • 2

2.2.使用flutter命令安装依赖:

切换到项目的根目录下执行如下命令。

$ flutter pub get

  
 
  • 1

2.3.在dart文件中引用:

import 'package:orientation/orientation.dart';

  
 
  • 1

2.4.完整demo:

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:orientation/orientation.dart';
import 'package:flutter/services.dart';


void main() {
  WidgetsFlutterBinding.ensureInitialized();
  OrientationPlugin.setPreferredOrientations(DeviceOrientation.values);
  OrientationPlugin.setEnabledSystemUIOverlays(SystemUiOverlay.values);
  runApp(MaterialApp(home: MyApp()));
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  DeviceOrientation _deviceOrientation;
  StreamSubscription<DeviceOrientation> subscription; @override
  void initState() { super.initState(); subscription = OrientationPlugin.onOrientationChange.listen((value) { // If the widget was removed from the tree while the asynchronous platform // message was in flight, we want to discard the reply rather than calling // setState to update our non-existent appearance. if (!mounted) return; setState(() { _deviceOrientation = value; }); OrientationPlugin.forceOrientation(value); });
  } @override
  void dispose() { _dispose(); super.dispose();
  } // https://github.com/flutter/flutter/issues/28134
  void _dispose() { subscription?.cancel();
  } @override
  Widget build(BuildContext context) { return WillPopScope( onWillPop: () { _dispose(); return Future.value(true); }, child: Scaffold( appBar: AppBar( title: const Text('Orientation Example'), ), body: Center( child: Column( mainAxisSize: MainAxisSize.min, children: <Widget>[ Text( 'Running on: ${_deviceOrientation ?? 'Unknown Orientation'}\n'), RaisedButton( child: Text('FullScreen'), onPressed: () { OrientationPlugin.setEnabledSystemUIOverlays([]); }), RaisedButton( child: Text('NormalScreen'), onPressed: () { OrientationPlugin.setEnabledSystemUIOverlays( SystemUiOverlay.values); }), Spacer(), Padding( padding: const EdgeInsets.all(8.0), child: Text( 'Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.'), ), ], ), ), ), );
  }
}

  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92

3.页面强制横屏

import 'package:flutter/material.dart';
import 'package:orientation/orientation.dart';
import 'package:flutter/services.dart';

class SignPage extends StatefulWidget {
  @override
  _SignPageState createState() => _SignPageState();
}

class _SignPageState extends State<SignPage> {
  @override
  void initState() { super.initState(); // 直接强制横屏 OrientationPlugin.forceOrientation(DeviceOrientation.landscapeRight);
  } @override
  Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('签名'), ), body: Column( children: <Widget>[ Expanded( child: Container( color: Colors.blue, ), ), Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: <Widget>[ RaisedButton( onPressed: () {}, child: Text("确定"), ), RaisedButton( onPressed: () {}, child: Text("重写"), ), RaisedButton( onPressed: () {}, child: Text("撤销"), ), RaisedButton( onPressed: () {}, child: Text("取消"), ), ], ), ], ), );
  }
}


  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57

文章来源: blog.csdn.net,作者:WongKyunban,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/weixin_40763897/article/details/108618882

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。