flutter how to set landscape mode automatically code example

Example 1: flutter lock orientation


void initState(){
  super.initState();
  SystemChrome.setPreferredOrientations([
      DeviceOrientation.landscapeRight,
      DeviceOrientation.landscapeLeft,
  ]);
}

Example 2: lock screen orientation flutter

<manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.example.orientation_lock_example">    <application ...>        <activity            android:name=".MainActivity"            android:screenOrientation="portrait"            ...            />            ...         </activity>        ...     </application></manifest>

Tags:

Dart Example