part of 'page_portrait.dart'; class PageLand extends StatelessWidget { const PageLand({super.key}); @override Widget build(BuildContext context) { var height = MediaQuery.of(context).size.height; height -= MediaQuery.of(context).viewInsets.vertical; return SizedBox.expand( child: Container( color: backgroundColor, child: Padding( padding: MediaQuery.of(context).padding, child: Row( mainAxisSize: MainAxisSize.min, children: [ const Expanded( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ Spacer(), SystemButtonGroup(), Spacer(), Padding( padding: EdgeInsets.only(left: 40, bottom: 40), child: DropButton(), ) ], ), ), _ScreenDecoration(child: Screen.fromHeight(height * 0.8)), const Expanded( child: Column( children: [ Spacer(), DirectionController(), SizedBox(height: 30), ], ), ), ], ), ), ), ); } }