Search
 
SCRIPT & CODE EXAMPLE
 

DART

flutter display widget based on device orientation


build(BuildContext context) {
    final isLandscape = MediaQuery.of(context).orientation ==
        Orientation.landscape; // check if the orientation is landscape
        
        
        // further down your code you can use 'if' or 'ternary' or both
        if (!isLandscape) txListWidget,
            if (isLandscape)
            _ternaryCondition ? _showFirstWidget : _showSecondWidget
            // the above widgets would be in a 'Row' or 'Column'
        }
Comment

how to check screen orientation in flutter

if (MediaQuery.of(context).orientation == Orientation.portrait){
    // is portrait
}else{
// is landscape
}
Comment

PREVIOUS NEXT
Code Example
Dart :: snackbar flutter 
Dart :: how to convert string into date format 
Dart :: dart delay 
Dart :: flutter remove dropdown shadow appbar 
Dart :: flutter appbar default padding 
Dart :: dart promise all 
Dart :: dart ternary 
Dart :: generate list flutter 
Dart :: flutter count list 
Dart :: Failed to load network image fliutter 
Dart :: convert timeofday to string flutter 
Dart :: flutter firebase personal user data 
Dart :: alertdialog padding flutter 
Dart :: dart check runtime type 
Dart :: map in dart 
Dart :: vertically Center a Text in Flutter 
Dart :: 2d list in dart 
Dart :: dart class and object 
Dart :: stack container flutter 
Dart :: dart list of maps 
Dart :: Flutter - FlutterLogo Widget 
Dart :: adding animation in flutter 
Dart :: how to update listview in flutter 
Dart :: how to effect container radius to children flutter 
Dart :: hive dart type adapter 
Dart :: proportion in flutter 
Dart :: return type of a function 
Dart :: dart print multiply 
Swift :: swift ui open link in browser 
Swift :: swiftui color picker 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =