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