Is it possible to make an application on Android TV but the display must be portrait according to the size of the TV, using the Flutter programming language
Example AndroidManifest.xml
```
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize"
android:screenOrientation="portrait">
```
Thank you very much

we get the idea of the position we rotate
Example AndroidManifest.xml
Example page.dart
Results