change orientation flutter code example
Example 1: flutter lock orientation for page
@override
void initState(){
super.initState();
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeRight,
DeviceOrientation.landscapeLeft,
]);
}
Example 2: flutter display widget based on device orientation
build(BuildContext context) {
final isLandscape = MediaQuery.of(context).orientation ==
Orientation.landscape;
if (!isLandscape) txListWidget,
if (isLandscape)
_ternaryCondition ? _showFirstWidget : _showSecondWidget
}