如何解决我如何在颤抖的孩子体内使用if / else语句? 我想使用if / else语句这是代码
我想使用if / else语句
只有在方向为横向的情况下,我才能为列设置 MainAxisAlignment.spaceEvenly 。因此,它不会改变我的纵向布局。
这是代码
class _MobileLayout extends StatelessWidget {
const _MobileLayout({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
var orientation = MediaQuery.of(context).orientation;
return Container(
width: orientation == Orientation.portrait ? 250 : 100,decoration: Boxdecoration(
color: Colors.white,BoxShadow: [
BoxShadow(
blurRadius: 16,color: Colors.black12,)
],),child: Column(
children: AppDrawer.getDrawerOptions(),);
}
}
我已经尝试了多种方法
解决方法
默认值为MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
,因此您可以执行以下操作;
child: Column(
mainAxisAlignment: orientation == Orientation.landscape?
MainAxisAlignment.spaceEvenly : MainAxisAlignment.start,children: AppDrawer.getDrawerOptions(),),
还将使用portrait
的默认值
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。