auto_orientation
為 iOS 和 Android 程序化設定設備方向
一個用於程式設計方式變更方向和旋轉的 Flutter 外掛
{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
This plugin was created to programmatically rotate on iOS and Android
After importing the package you can use:
AutoOrientation.landscapeLeftMode(); or
AutoOrientation.landscapeRightMode(); or
AutoOrientation.portraitDownMode(); (might not work) or
AutoOrientation.portraitUpMode(); or
AutoOrientation.portraitAutoMode(); (Android only) or
AutoOrientation.portraitAutoMode(forceSensor: true); (Use sensor data to change direction, ignoring user's rotation preference. Much like Youtube fullscreen. Android only) or
AutoOrientation.landscapeAutoMode(); (Android only) or
AutoOrientation.landscapeAutoMode(forceSensor: true); (Use sensor data to change direction, ignoring user's rotation preference. Much like Youtube fullscreen. Android only) or
AutoOrientation.fullAutoMode();
No need to call SystemChrome.setPreferredOrientations because
it has been added to the library itself.
This has been done because before android auto-rotation wasn't
working after setting rotation using the plugin.
We've used it for a VideoScaffold, to programmatically change to landscape and back to portrait if the scaffold is disposed.
Please have a look in the example/ folder