“Ориентация трепетала” Ответ

Виджет дисплея Flutter Display на основе ориентации устройства


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'
        }
Manga301

Ориентация трепетала

SystemChrome.setPreferredOrientations([
    DeviceOrientation.portraitDown,
    DeviceOrientation.portraitUp,
  ]);
Faiz

Ответы похожие на “Ориентация трепетала”

Вопросы похожие на “Ориентация трепетала”

Больше похожих ответов на “Ориентация трепетала” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования