Flutter SystemChrome 小结

固定App 朝向

 ➥单方向
若需要固定应用为单一方向,仅需设置所需要的方向属性即可;
// 竖直上
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
// 竖直下
SystemChrome.setPreferredOrientations([DeviceOrientation.portraitDown]);
// 水平左
SystemChrome.setPreferredOrientations([DeviceOrientation.landscapeLeft]);
// 水平右
SystemChrome.setPreferredOrientations([DeviceOrientation.landscapeRight]);

 
➥多方向
 若需要应用随重力感应变化方向,需设置多个方向属性;
// 竖直方向
SystemChrome.setPreferredOrientations([DeviceOrientat

Flutter SystemChrome 小结最先出现在Python成神之路

版权声明:
作者:cc
链接:https://www.techfm.club/p/20960.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>