Flutter SystemChrome 小结
固定App 朝向
➥单方向
若需要固定应用为单一方向,仅需设置所需要的方向属性即可;
// 竖直上
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
// 竖直下
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitDown]);
// 水平左
SystemChrome.setPreferredOrientations([DeviceOrientation.landscapeLeft]);
// 水平右
SystemChrome.setPreferredOrientations([DeviceOrientation.landscapeRight]);
➥多方向
若需要应用随重力感应变化方向,需设置多个方向属性;
// 竖直方向
SystemChrome.setPreferredOrientations([DeviceOrientat
共有 0 条评论